/* login.css */

/* Reset and base styles */
/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    box-sizing: border-box;*/
/*}*/

/*body {*/
/*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
/*    line-height: 1.6;*/
/*    color: #333;*/
/*    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
/*    min-height: 100vh;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    overflow-x: hidden;*/
/*}*/

/* Main container */
/*.login-container {*/
/*    display: flex;*/
/*    max-width: 1200px;*/
/*    width: 100%;*/
/*    background: rgba(255, 255, 255, 0.95);*/
/*    border-radius: 20px;*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
/*    overflow: hidden;*/
/*    backdrop-filter: blur(10px);*/
/*    margin: 20px;*/
/*    animation: slideIn 0.8s ease-out;*/
/*}*/

/*@keyframes slideIn {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(30px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/* Login card */
/*.login-card {*/
/*    flex: 1;*/
/*    padding: 3rem;*/
/*    max-width: 500px;*/
/*}*/

/* Login header */
/*.login-header {*/
/*    text-align: center;*/
/*    margin-bottom: 2.5rem;*/
/*}*/

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 0.5rem;*/
/*    margin-bottom: 1rem;*/
/*}*/

/*.logo i {*/
/*    font-size: 2.5rem;*/
/*    color: #667eea;*/
/*    animation: pulse 2s infinite;*/
/*}*/

/*@keyframes pulse {*/
/*    0%, 100% {*/
/*        transform: scale(1);*/
/*    }*/
/*    50% {*/
/*        transform: scale(1.1);*/
/*    }*/
/*}*/

/*.logo h1 {*/
/*    font-size: 2rem;*/
/*    font-weight: 700;*/
/*    background: linear-gradient(135deg, #667eea, #764ba2);*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*}*/

/*.welcome-text {*/
/*    color: #666;*/
/*    font-size: 1.1rem;*/
/*    margin-bottom: 0;*/
/*}*/

/* Form styles */
/*.login-form {*/
/*    width: 100%;*/
/*}*/

/*.form-group {*/
/*    margin-bottom: 1.5rem;*/
/*}*/

/*.form-group label {*/
/*    display: block;*/
/*    margin-bottom: 0.5rem;*/
/*    font-weight: 600;*/
/*    color: #333;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.input-wrapper {*/
/*    position: relative;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.input-wrapper i {*/
/*    position: absolute;*/
/*    left: 1rem;*/
/*    color: #999;*/
/*    z-index: 2;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.input-wrapper.focused i {*/
/*    color: #667eea;*/
/*}*/

/*.input-wrapper input {*/
/*    width: 100%;*/
/*    padding: 1rem 1rem 1rem 3rem;*/
/*    border: 2px solid #e1e5e9;*/
/*    border-radius: 12px;*/
/*    font-size: 1rem;*/
/*    transition: all 0.3s ease;*/
/*    background: #fff;*/
/*}*/

/*.input-wrapper input:focus {*/
/*    outline: none;*/
/*    border-color: #667eea;*/
/*    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);*/
/*}*/

/*.input-wrapper input::placeholder {*/
/*    color: #aaa;*/
/*}*/

/*.toggle-password {*/
/*    position: absolute;*/
/*    right: 1rem;*/
/*    background: none;*/
/*    border: none;*/
/*    color: #999;*/
/*    cursor: pointer;*/
/*    padding: 0.5rem;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.toggle-password:hover {*/
/*    color: #667eea;*/
/*}*/

/* Form options */
/*.form-options {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    margin-bottom: 2rem;*/
/*}*/

/*.remember-me {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    cursor: pointer;*/
/*    font-size: 0.9rem;*/
/*    color: #666;*/
/*}*/

/*.remember-me input[type="checkbox"] {*/
/*    display: none;*/
/*}*/

/*.checkmark {*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    border: 2px solid #ddd;*/
/*    border-radius: 4px;*/
/*    margin-right: 0.5rem;*/
/*    position: relative;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.remember-me input[type="checkbox"]:checked + .checkmark {*/
/*    background: #667eea;*/
/*    border-color: #667eea;*/
/*}*/

/*.remember-me input[type="checkbox"]:checked + .checkmark::after {*/
/*    content: '\f00c';*/
/*    font-family: 'Font Awesome 6 Free';*/
/*    font-weight: 900;*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 50%;*/
/*    transform: translate(-50%, -50%);*/
/*    color: white;*/
/*    font-size: 12px;*/
/*}*/

/*.forgot-password {*/
/*    color: #667eea;*/
/*    text-decoration: none;*/
/*    font-size: 0.9rem;*/
/*    font-weight: 500;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.forgot-password:hover {*/
/*    color: #764ba2;*/
/*    text-decoration: underline;*/
/*}*/

/* Login button */
/*.login-btn {*/
/*    width: 100%;*/
/*    padding: 1rem 2rem;*/
/*    background: linear-gradient(135deg, #667eea, #764ba2);*/
/*    color: white;*/
/*    border: none;*/
/*    border-radius: 12px;*/
/*    font-size: 1.1rem;*/
/*    font-weight: 600;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 0.5rem;*/
/*    margin-bottom: 1.5rem;*/
/*}*/

/*.login-btn:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);*/
/*}*/

/*.login-btn:active {*/
/*    transform: translateY(0);*/
/*}*/

/*.login-btn:disabled {*/
/*    opacity: 0.7;*/
/*    cursor: not-allowed;*/
/*    transform: none;*/
/*}*/

/* Divider */
/*.divider {*/
/*    text-align: center;*/
/*    margin: 1.5rem 0;*/
/*    position: relative;*/
/*}*/

/*.divider::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    left: 0;*/
/*    right: 0;*/
/*    height: 1px;*/
/*    background: #e1e5e9;*/
/*}*/

/*.divider span {*/
/*    background: white;*/
/*    padding: 0 1rem;*/
/*    color: #999;*/
/*    font-size: 0.9rem;*/
/*}*/

/* Social login */
/*.social-login {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 0.75rem;*/
/*    margin-bottom: 1.5rem;*/
/*}*/

/*.social-btn {*/
/*    width: 100%;*/
/*    padding: 0.875rem 1rem;*/
/*    border: 2px solid #e1e5e9;*/
/*    border-radius: 12px;*/
/*    background: white;*/
/*    color: #333;*/
/*    font-size: 1rem;*/
/*    font-weight: 500;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    gap: 0.5rem;*/
/*}*/

/*.social-btn:hover {*/
/*    border-color: #d1d5d9;*/
/*    transform: translateY(-1px);*/
/*    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.google-btn:hover {*/
/*    border-color: #db4437;*/
/*    color: #db4437;*/
/*}*/

/*.microsoft-btn:hover {*/
/*    border-color: #0078d4;*/
/*    color: #0078d4;*/
/*}*/

/* Signup link */
/*.signup-link {*/
/*    text-align: center;*/
/*    color: #666;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.signup-link a {*/
/*    color: #667eea;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.signup-link a:hover {*/
/*    color: #764ba2;*/
/*    text-decoration: underline;*/
/*}*/

/* Alert messages */
/*.alert {*/
/*    padding: 1rem;*/
/*    border-radius: 8px;*/
/*    margin-bottom: 1rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.alert-error {*/
/*    background: #fee;*/
/*    color: #c53030;*/
/*    border: 1px solid #fed7d7;*/
/*}*/

/*.alert-success {*/
/*    background: #f0fff4;*/
/*    color: #2f855a;*/
/*    border: 1px solid #c6f6d5;*/
/*}*/

/*.alert-warning {*/
/*    background: #fffbeb;*/
/*    color: #d69e2e;*/
/*    border: 1px solid #feebc8;*/
/*}*/

/* Info panel */
/*.info-panel {*/
/*    flex: 1;*/
/*    background: linear-gradient(135deg, #667eea, #764ba2);*/
/*    color: white;*/
/*    padding: 3rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.info-panel::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -50%;*/
/*    right: -50%;*/
/*    width: 100%;*/
/*    height: 200%;*/
/*    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');*/
/*    animation: drift 20s infinite linear;*/
/*}*/

/*@keyframes drift {*/
/*    from {*/
/*        transform: translateX(-100px);*/
/*    }*/
/*    to {*/
/*        transform: translateX(100px);*/
/*    }*/
/*}*/

/*.info-content {*/
/*    text-align: center;*/
/*    z-index: 2;*/
/*    position: relative;*/
/*}*/

/*.info-content h2 {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    margin-bottom: 1rem;*/
/*    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.info-content > p {*/
/*    font-size: 1.2rem;*/
/*    margin-bottom: 2rem;*/
/*    opacity: 0.9;*/
/*}*/

/*.features {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 1.5rem;*/
/*    margin-top: 2rem;*/
/*}*/

/*.feature {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.75rem;*/
/*    font-size: 1.1rem;*/
/*    font-weight: 500;*/
/*}*/

/*.feature i {*/
/*    font-size: 1.5rem;*/
/*    opacity: 0.8;*/
/*}*/

/*.fa-eye{*/
/*    margin-left: -6px;*/
/*    margin-top: -5px;*/
/*}*/




/* Responsive design */
/*@media (max-width: 968px) {*/
/*    .login-container {*/
/*        flex-direction: column;*/
/*        max-width: 500px;*/
/*    }*/
    
/*    .info-panel {*/
/*        order: -1;*/
/*        padding: 2rem;*/
/*    }*/
    
/*    .info-content h2 {*/
/*        font-size: 2rem;*/
/*    }*/
    
/*    .features {*/
/*        grid-template-columns: 1fr;*/
/*        gap: 1rem;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .login-container {*/
/*        margin: 10px;*/
/*        border-radius: 15px;*/
/*    }*/
    
/*    .login-card {*/
/*        padding: 2rem 1.5rem;*/
/*    }*/
    
/*    .logo h1 {*/
/*        font-size: 1.5rem;*/
/*    }*/
    
/*    .social-login {*/
/*        flex-direction: column;*/
/*    }*/
    
/*    .form-options {*/
/*        flex-direction: column;*/
/*        gap: 1rem;*/
/*        align-items: flex-start;*/
/*    }*/
/*}*/

/* Dark mode support */
/*@media (prefers-color-scheme: dark) {*/
/*    body {*/
/*        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);*/
/*    }*/
    
/*    .login-container {*/
/*        background: rgba(30, 30, 30, 0.95);*/
/*        color: #e0e0e0;*/
/*    }*/
    
/*    .welcome-text {*/
/*        color: #b0b0b0;*/
/*    }*/
    
/*    .form-group label {*/
/*        color: #e0e0e0;*/
/*    }*/
    
/*    .input-wrapper input {*/
/*        background: #2a2a2a;*/
/*        border-color: #404040;*/
/*        color: #e0e0e0;*/
/*    }*/
    
/*    .input-wrapper input:focus {*/
/*        border-color: #667eea;*/
/*        background: #2a2a2a;*/
/*    }*/
    
/*    .social-btn {*/
/*        background: #2a2a2a;*/
/*        border-color: #404040;*/
/*        color: #e0e0e0;*/
/*    }*/
    
/*    .divider span {*/
/*        background: #2a2a2a;*/
/*        color: #b0b0b0;*/
/*    }*/
/*}*/



/* login.css */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

/* Main container */
.login-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin: 20px;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Login card */
.login-card {
    flex: 1;
    padding: 3rem;
    max-width: 500px;
}

/* Login header */
.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.logo i {
    font-size: 2.5rem;
    color: #667eea;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Form styles */
.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: #999;
    z-index: 2;
    transition: color 0.3s ease;
}

.input-wrapper.focused i {
    color: #667eea;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 3rem; /* Increased right padding for toggle button */
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-wrapper input::placeholder {
    color: #aaa;
}

.toggle-password {
    position: absolute;
    right: 1rem; /* Proper right padding */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.toggle-password:hover {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.1);
}

.toggle-password:active {
    background-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-50%) scale(0.95);
}

.toggle-password i {
    font-size: 14px;
    pointer-events: none;
}

/* Form options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.remember-me input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.remember-me input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.remember-me input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Login button */
.login-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Divider */
.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #999;
    font-size: 0.9rem;
}

/* Social login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: white;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.social-btn:hover {
    border-color: #d1d5d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-btn:hover {
    border-color: #db4437;
    color: #db4437;
}

.microsoft-btn:hover {
    border-color: #0078d4;
    color: #0078d4;
}

/* Signup link */
.signup-link {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.signup-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Alert messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.alert-error,
.alert-danger {
    background: #fee;
    color: #c53030;
    border: 1px solid #fed7d7;
}

.alert-success {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #c6f6d5;
}

.alert-warning {
    background: #fffbeb;
    color: #d69e2e;
    border: 1px solid #feebc8;
}

/* Info panel */
.info-panel {
    flex: 1;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: drift 20s infinite linear;
}

@keyframes drift {
    from {
        transform: translateX(-100px);
    }
    to {
        transform: translateX(100px);
    }
}

.info-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.info-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature i {
    font-size: 1.5rem;
    opacity: 0.8;
}

.fa-eye {
    margin-left: 0; /* Reset the negative margin */
    margin-top: 0;  /* Reset the negative margin */
}

/* Responsive design */
@media (max-width: 968px) {
    .login-container {
        flex-direction: column;
        max-width: 500px;
    }
    
    .info-panel {
        order: -1;
        padding: 2rem;
    }
    
    .info-content h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .social-login {
        flex-direction: column;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* Mobile responsive adjustments for toggle button */
    .input-wrapper input {
        padding: 1rem 3rem 1rem 2.5rem;
    }
    
    .toggle-password {
        right: 0.75rem;
        width: 28px;
        height: 28px;
    }
    
    .input-wrapper i {
        left: 0.75rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }
    
    .login-container {
        background: rgba(30, 30, 30, 0.95);
        color: #e0e0e0;
    }
    
    .welcome-text {
        color: #b0b0b0;
    }
    
    .form-group label {
        color: #e0e0e0;
    }
    
    .input-wrapper input {
        background: #2a2a2a;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .input-wrapper input:focus {
        border-color: #667eea;
        background: #2a2a2a;
    }
    
    .social-btn {
        background: #2a2a2a;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .divider span {
        background: #2a2a2a;
        color: #b0b0b0;
    }
    
    .toggle-password:hover {
        background-color: rgba(102, 126, 234, 0.2);
    }
}