@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600;700;800&family=Lato:wght@300;400;500;600&display=swap');

:root {
    --primary: #1a3a5c;
    --primary-light: #2457a0;
    --accent: #f4a020;
    --accent-dark: #d4870a;
    --bg: #f0f4fa;
    --surface: #ffffff;
    --text: #1e2a38;
    --text-muted: #5a6e85;
}

body {
    background: var(--bg);
    font-family: 'Lato', sans-serif;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

/* Blobs decorativos como tu login */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .15;
    pointer-events: none;
    z-index: 0;
}

body::before {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -150px;
    left: -150px;
}

body::after {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -120px;
    right: -120px;
}

.center-box {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: auto;
    margin-top: 8%;
    background: var(--surface);
    padding: 55px 50px;
    border-radius: 24px;
    box-shadow:
        0 6px 12px rgba(0,0,0,.05),
        0 25px 60px rgba(26,58,92,.15);
    text-align: center;
    animation: fadeIn .6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(25px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.icon-check {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(26,58,92,.35);
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--primary);
    margin-top: 25px;
}

.text-muted {
    color: var(--text-muted) !important;
    font-size: .95rem;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dde5f0, transparent);
    margin: 25px 0;
}


.btn-main {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: .03em;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 6px 20px rgba(26,58,92,.3);
    transition: .2s;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(26,58,92,.4);
}




.btn-outline-custom {
    border: 1.5px solid #c5d6ee;
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    transition: .2s;
}

.btn-outline-custom:hover {
    background: #eef4ff;
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(244,160,32,.35);
    transition: .2s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(244,160,32,.42);
}
