/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  background: linear-gradient(to right, #4facfe, #00f2fe);
  color: #333;
  direction: rtl;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.frame {
  width: 400px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  text-align: center;
  position: relative;
}

.rectangle {
  background: #007BFF;
  height: 8px;
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.logo {
  width: 80px;
  margin: 20px auto;
}

.system-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #007BFF;
  margin: 10px 0;
}

.edu {
  color: #007BFF;
}

.master {
  color: #FF5722;
}

.description {
  font-size: 0.9rem;
  margin-top: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

.features {
  font-size: 0.9rem;
  text-align: right;
  color: #444;
  margin-bottom: 20px;
}

.features .highlight {
  color: #FF5722;
  font-weight: bold;
}

.contact-info {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 20px;
  text-align: right;
}

.login-section {
  position: relative;
}

.login-background {
  background: #F7F7F7;
  border-radius: 8px;
  padding: 20px;
  margin: 10px 0;
}

.user input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.login-button {
  width: 100%;
  background: #007BFF;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.login-button:hover {
  background: #0056b3;
}

.password-toggle {
  font-size: 0.8rem;
  color: #007BFF;
  cursor: pointer;
  margin-bottom: 10px;
}

.password-toggle:hover {
  text-decoration: underline;
}
