﻿:root {
    --custom-blue: #0E2050;
    --custom-blue-hover: #1a2f7a;
    --custom-blue-light: #e8eeff;
    --custom-blue-dark: #162a6b;
}

body {
   background-color: #F1F1F1;
}

.card-shadow {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.btn-custom-blue {
    background-color: var(--custom-blue);
    border-color: var(--custom-blue);
    color: white;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 200px;
}

    .btn-custom-blue:hover {
        background-color: var(--custom-blue-hover);
        border-color: var(--custom-blue-hover);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(29, 56, 143, 0.3);
    }

.btn-outline-custom {
    border: 2px solid #6c757d;
    color: #6c757d;
    background-color: white;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 200px;
}

    .btn-outline-custom:hover {
        background-color: #6c757d;
        border-color: #6c757d;
        color: white;
    }

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    /*color: white;*/
}

    .check-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.check-icon {
    color: #FFCC00;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.content-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-text {
    background-color: rgb(241 241 241);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FFCC00;
    margin: 1.5rem 0;
    color: #0e2050;
}

.note-section {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    color: white;
}

.email-link {
    color: #ffc107;
    text-decoration: underline;
    font-weight: 600;
}

    .email-link:hover {
        color: #ffca2c;
        text-decoration: underline;
    }

.title-section {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--custom-blue);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
}

.security-text {
    color: #6c757d;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.button-section {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .btn-custom-blue, .btn-outline-custom {
        min-width: 150px;
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-height: 80px;
    transform: translateX(-15px);
}
