:root {
    --faster-blue: #003366; /* Azul oscuro del texto */
    --link-blue: #0000ff;   /* Azul estándar de enlace */
    --bg-color: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 550px;
    width: 90%;
    border-top: 6px solid var(--faster-blue);
}

.logo {
    width: 220px;
    height: auto;
    margin-bottom: 40px;
}

h1 {
    color: var(--faster-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.label {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.email {
    color: var(--link-blue);
    text-decoration: underline;
    font-size: 1.2rem;
    transition: opacity 0.2s;
}

.email:hover {
    opacity: 0.7;
}
