* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    height: 100vh;
}

/* 🔝 BLOQUE SUPERIOR */
.top {
    height: 55vh;
    background-color: #125b50;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.contacto {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center; /* opcional, si lo quieres centrado */
}

.logo {
    width: 100%;
    max-width: 420px;
    height: auto;
    animation: fadeIn 1s ease-out;
}

/* 🔽 BLOQUE INFERIOR */
.bottom {
    height: 45vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* FORM */
.form {
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 13px;
    color: #666;
}

input {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

input:focus {
    border-color: #125b50;
    box-shadow: 0 0 0 2px rgba(18, 91, 80, 0.1);
}

button {
    padding: 14px;
    background-color: #125b50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

button:hover {
    opacity: 0.9;
}

/* animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.email-link {
    color: #125b50;
    text-decoration: none;
}

.email-link:visited {
    color: #125b50;
}

.email-link:hover {
    text-decoration: underline;
}