/* Reset básico */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

/* Contenedor principal */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Logo */
.logo {
    width: 150px;
    margin-bottom: 40px;
}

/* Opciones */
.options {
    display: flex;
    gap: 20px;
}

/* Botones */
.btn {
    text-decoration: none;
    padding: 12px 24px;
    background: #0078d7;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #005fa3;
}