﻿body {
    background-color: #1e40af;
    background-image: radial-gradient(circle at 25% 25%, #3b82f6 0%, transparent 50%), radial-gradient(circle at 75% 75%, #1d4ed8 0%, transparent 50%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(120, 200, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}



.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 450px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.logo-section {
    text-align: center;
    padding: 40px 40px 20px 40px;
    border-bottom: 1px solid #e9ecef;
}

.logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 10px;
}

.logo-subtitle {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.login-form-section {
    padding: 30px 40px 40px 40px;
}

.login-title {
    color: #343a40;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.form-group label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: #4a90c2;
        box-shadow: 0 0 0 0.2rem rgba(74, 144, 194, 0.15);
        transform: translateY(-1px);
    }

.btn-primary {
    background: linear-gradient(135deg, #4a90c2 0%, #3a7ca8 100%);
    border: none;
    padding: 12px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 194, 0.3);
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #3a7ca8 0%, #2d6289 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(74, 144, 194, 0.4);
    }

    .btn-primary:focus {
        box-shadow: 0 0 0 0.2rem rgba(74, 144, 194, 0.5);
    }

.forgot-password {
    text-align: center;
    margin-top: 20px;
}

    .forgot-password a {
        color: #4a90c2;
        text-decoration: none;
        font-size: 14px;
    }

        .forgot-password a:hover {
            text-decoration: underline;
        }

.footer-text {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 12px;
}

.accreditation-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.urac-badge {
    text-align: center;
    max-width: 120px;
}

.urac-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px auto;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    position: relative;
}

.urac-inner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.urac-star {
    color: #d4af37;
    font-size: 14px;
    margin-bottom: 2px;
}

.urac-text {
    color: #2c5f7c;
    font-size: 8px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.accreditation-text {
    font-size: 11px;
    color: #2c5f7c;
    font-weight: 600;
    margin-bottom: 2px;
}

.accreditation-detail {
    font-size: 9px;
    color: #6c757d;
    line-height: 1.2;
    margin-bottom: 4px;
}

.expiration {
    font-size: 10px;
    color: #495057;
    font-weight: 500;
}

.alert {
    font-size: 14px;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .logo-section,
    .login-form-section {
        padding-left: 25px;
        padding-right: 25px;
    }

    .logo {
        max-width: 250px;
    }
}
