/** ===========================
    Estilos Inicio (Presentación)
=========================== **/

.top-right {
    position: absolute;
    top: 20px;
    right: 20px;
}

.btn-login {
    background: #0a6e3f;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s;
}
.btn-login:hover {
    background: #095c35;
}

.logo-container {
    position: absolute;
    top: 42%;
    left: 58%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo {
    width: 420px;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    max-width: none !important;
    height: auto !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
