﻿/* ========================================
   AUTHENTIFICATION - BASE STYLES
   ======================================== */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5CB85C 0%, #449D44 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

    .auth-container::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.auth-card {
    width: 100%;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.auth-logo {
    text-align: center;
    margin-bottom: 32px;
}

    .auth-logo img {
        max-height: 80px;
        width: auto;
    }

.auth-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #1a202c;
}

.auth-subtitle {
    text-align: center;
    margin-bottom: 32px;
    color: #718096;
    font-size: 14px;
}

.auth-divider {
    margin: 24px 0;
    text-align: center;
    position: relative;
}

    .auth-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e2e8f0;
    }

    .auth-divider span {
        background: white;
        padding: 0 16px;
        position: relative;
        color: #718096;
        font-size: 14px;
    }

.auth-links {
    margin-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

    .auth-links a {
        color: #449D44;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.2s ease;
    }

        .auth-links a:hover {
            color: #5CB85C;
        }

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.auth-footer-text {
    color: #718096;
    font-size: 13px;
    margin-bottom: 8px;
}

.auth-footer-contact {
    color: #449D44;
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 640px) {
    .auth-container {
        padding: 16px;
    }

    .auth-card {
        max-width: 100%;
    }
}
