:root {
    font-size: 18px; /* aumentamos un punto base */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-image: url('FondoLogin.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1.25rem;
}

.login-container {
    display: flex;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 68.75rem;
    height: 90vh;
    max-height: 37.5rem;
}

/* Panel izquierdo */
.left-panel {
    background-color: #166379;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
}

.logo-img {
    max-width: 300px;
}

/* Panel derecho */
.right-panel {
    background-color: #e1dfd9;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}

.form-container {
    width: 100%;
    max-width: 30rem;
    text-align: center;
}

.form-container h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: 2.25rem; /* más grande */
    font-weight: bold;
    color: #166379;
    margin-bottom: 1rem;
}

.form-container p {
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;     /* más grande */
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Botones estilizados */
.d-grid {
    
    display: grid;
    grid-template-columns: 1fr 1fr; /* Elimina el espacio entre 1 y fr */
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    width: 100%;
    padding: 1.25rem 0;
    border-radius: 999px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-teal {
    background-color: #166379;
    color: #e1dfd9;
    border-color: #166379;
}
.btn-teal:hover {
    background-color: #0f4e5e;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.btn-gray {
    background-color:#D88429;
    color: #e1dfd9;
    
}
.btn-gray:hover {
    background-color: #E69F27;
    color: #e1dfd9;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.selection-note{
    margin-bottom:70px;
    
}
/* Nota de selección */
.selection-note p {
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;  /* más grande */
    margin-bottom: 0.75rem;
    text-align: left;
}

.selection-note ul {
    list-style-type: disc;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.selection-note li {
    margin-bottom: 0.5rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;  /* más grande */
}

/* Responsive */
@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 95%;
        height: auto;
    }
    .left-panel,
    .right-panel {
        width: 100%;
        padding: 1.5rem;
    }
    .d-grid {
        grid-template-columns: 1fr;  /* botón a full width en móvil */
    }
}

.submit-btn.back {
  width: 200px;
  height: 48px;
  background: #8A9A9C;           /* color “Volver” */
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}