/* Auth Pages Styling */
body {
    background: #ffffff;
    min-height: 100vh;
}



.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.auth-logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.auth-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.auth-logo:hover {
    transform: scale(1.05);
}

.auth-title {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 50%, #1976d2 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: none;
    letter-spacing: -0.5px;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.auth-card {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #2c3e50;
    box-sizing: border-box;
}

.auth-input:focus {
    outline: none;
    border-color: #4facfe;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.1);
}

.auth-checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.auth-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4facfe;
}

.auth-checkbox-label {
    font-size: 14px;
    color: #ffffff;
    cursor: pointer;
}

.auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    gap: 15px;
    flex-wrap: wrap;
}

.auth-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-link:hover {
    color: #e0f7ff;
    text-decoration: underline;
}

.auth-button {
    background: #ffffff;
    color: #4facfe;
    border: none;
    border-radius: 12px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
    background: #f8f9fa;
}

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

.auth-error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
}

.auth-status {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

/* Responsive */
@media (max-width: 600px) {
    .auth-card {
        padding: 30px 25px;
    }

    .auth-title {
        font-size: 26px;
    }

    .auth-logo {
        width: 80px;
        height: 80px;
    }

    .auth-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-button {
        width: 100%;
    }
}

/* Dashboard Header Styles for Auth Pages */
.logo-section {
    text-align: center;
    display: block;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.05) 0%, rgba(33, 150, 243, 0.05) 100%);
    padding: 30px 20px;
    border-radius: 20px;
    margin-bottom: 35px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 450px;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.logo {
    max-width: 48px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.site-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #00bcd4 0%, #2196f3 50%, #1976d2 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    letter-spacing: -0.5px;
}

.slogan {
    display: block;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}
