html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-color: #f0f8ff; /* Azul muy claro */
    color: #333; /* Color de texto predeterminado */
    font-family: Arial, sans-serif;
}
.text-center {
    text-align: center;
}
.logo-navbar {
    height: 100px; /* Ajusta la altura que quieras */
    width: auto; /* Mantiene la proporción */
}

/* Logo responsive para pantallas pequeñas */
@media (max-width: 576px) {
    .logo-navbar {
        height: 50px; /* Más pequeño en móviles */
    }
}
.navbar {
    min-height: 100px; /* altura mínima del navbar */
    max-height: 100px;
}
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2em;
    background-color: #fff9d6;
    border-radius: 25px;
    transition: .4s ease-in-out;
}

    .form:hover {
        transform: scale(1.03);
        border: 1px solid #652c90;
    }

#heading {
    text-align: center;
    margin: 2em;
    color: #652c90;
    font-size: 1.5em;
    font-weight: 600;
}

.field {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    border-radius: 25px;
    padding: 0.6em;
    border: 1px solid #652c90;
    color: #652c90;
    background-color: #fff9d6;
    box-shadow: inset 2px 5px 10px rgb(220, 220, 220);
}

.input-icon {
    height: 1.3em;
    width: 1.3em;
    fill: #652c90;
}

.input-field {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    color: #652c90;
    font-weight: 500;
}

.form .btn {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin-top: 2em;
}

.button1 {
    padding: 0.6em 1.5em;
    border-radius: 5px;
    border: none;
    outline: none;
    transition: .3s ease-in-out;
    background-color: #652c90;
    color: #fff9d6;
    font-weight: 600;
}

    .button1:hover {
        background-color: #4b1f68;
    }

.button2 {
    padding: 0.6em 1.5em;
    border-radius: 5px;
    border: 1px solid #652c90;
    outline: none;
    transition: .3s ease-in-out;
    background-color: #fff9d6;
    color: #652c90;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

    .button2:hover {
        background-color: #f5f0c5;
    }

.button3 {
    margin-top: 1em;
    padding: 0.5em;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #ff4d4d;
    color: #fff9d6;
    font-weight: 500;
    display: block;
}

    .button3:hover {
        background-color: #cc0000;
    }
