/* Authentication Pages Styling */
.auth-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
}
.forgot-link{
    text-decoration: none;
    color: #667eea;
    font-weight: 500;
}
.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    transform: translateY(0);
    animation: floatIn 0.6s ease-out;
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.auth-header h2 i {
    color: #667eea;
    margin-right: 10px;
}

.auth-header p {
    color: #666;
    font-size: 16px;
}

/* Floating Input Animation */
.floating-input {
    position: relative;
    margin-bottom: 25px;
}

.floating-input input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    color: #333;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.floating-input label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

.floating-input input:focus,
.floating-input input:not(:placeholder-shown) {
    background: rgba(102, 126, 234, 0.05);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    background: white;
    padding: 0 5px;
    color: #667eea;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.floating-input input:focus ~ .input-line {
    width: 100%;
}


/* Auth Button */
.auth-button {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.auth-button:active {
    transform: translateY(0);
}

.auth-button i {
    transition: transform 0.3s ease;
}

.auth-button:hover i {
    transform: translateX(5px);
}

/* Social Login */
.auth-separator {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-separator::before,
.auth-separator::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: #ddd;
}

.auth-separator::before { left: 0; }
.auth-separator::after { right: 0; }

.auth-separator span {
    background: white;
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}


/* Auth Footer */
.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: #666;
    font-size: 14px;
}

.auth-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #764ba2;
}

/* Reset Password Info */
.reset-info {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    background: rgba(102, 126, 234, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.reset-info i {
    color: #667eea;
    margin-top: 3px;
}

.reset-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-header h2 {
        font-size: 24px;
    }
    
    .floating-input input {
        font-size: 15px;
    }
}
