
.auth-container {
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.07);
            transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            max-width: 500px;
            margin: 2rem auto;
            padding: 3rem;
            position: relative;
        }

.auth-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

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

.form-input {
            background-color: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 0.5rem;
            padding: 1rem 1rem 1rem 3rem;
            font-size: 1rem;
            width: 100%;
            transition: all 0.3s ease;
        }

.form-input:focus {
            border-color: #4c51bf;
            box-shadow: 0 0 0 3px rgba(76, 81, 191, 0.1);
            outline: none;
            background-color: #ffffff;
        }

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    pointer-events: none;
}

.input-group {
    position: relative;
    width: 100%;
}

.form-input {
    padding-left: 2.5rem;
}

.form-input:focus + .input-icon {
            color: #4c51bf;
        }

.error-message {
            background-color: #fee2e2;
            color: #dc2626;
            border: 1px solid #fca5a5;
            padding: 1rem 1.25rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            font-size: 0.9375rem;
        }

.forgot-password {
            text-align: center;
            margin-top: 1rem;
        }

.forgot-password .link {
            color: #6366f1;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

.forgot-password .link:hover {
            color: #3730a3;
        }

.divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
        }

.divider::before,
.divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e5e7eb;
        }

.divider span {
            padding: 0 1rem;
            color: #9ca3af;
            font-size: 0.875rem;
        }

.auth-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem 1rem;
            background-color: #ffffff;
        }

/* Password toggle button styling */
.password-toggle {
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #94a3b8;
            cursor: pointer;
            transition: color 0.3s ease;
        }

.password-toggle:hover {
            color: #4c51bf;
        }

.password-strength {
            margin-top: 0.5rem;
            font-size: 0.875rem;
        }

.strength-indicator {
            display: flex;
            gap: 2px;
            margin-top: 0.25rem;
        }

.strength-bar {
            height: 3px;
            flex: 1;
            background-color: #e5e7eb;
            border-radius: 2px;
            transition: background-color 0.3s ease;
        }

.strength-bar.weak { background-color: #ef4444; }
.strength-bar.fair { background-color: #f59e0b; }
.strength-bar.good { background-color: #10b981; }
.strength-bar.strong { background-color: #059669; }

.requirement {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.25rem;
            color: #6b7280;
            transition: color 0.3s ease;
        }

.requirement.met {
            color: #10b981;
        }

.requirement.met .req-icon {
            color: #10b981;
        }

.req-icon {
            width: 12px;
            font-weight: bold;
            color: #ef4444;
        }
