/* General Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #ffc107, #2575fc);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

/* Login Container */
.login-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    text-align: center;
}

/* Login Box */
.login-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Login Header */
.login-header .logo {
    width: 100px;
    margin-bottom: 1rem;
}

.login-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0;
    color: #333;
}

.login-header p {
    font-size: 0.9rem;
    color: #666;
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}

.input-group i {
    color: #666;
    margin-right: 0.5rem;
}

.input-group input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    color: #333;
}

.login-button {
    background: #2575fc;
    color: #fff;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-button:hover {
    background: #1a5bbf;
}

/* Login Options */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.login-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.login-options a {
    color: #2575fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-options a:hover {
    color: #1a5bbf;
}

/* Login Footer */
.login-footer {
    font-size: 0.9rem;
    color: #666;
}

.login-footer a {
    color: #2575fc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #1a5bbf;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
  color: #666;
}
.input-group.position-relative {
  position: relative;
}
