* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #333;
}

body, html {
    height: 100%;
    font-family: Montserrat,system-ui,sans-serif;
}

.login-background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    background: url('../images/tribolog_background3.png') no-repeat center center;
    background-color: #F8FBFC;
    background-size: cover;
}

.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 100%;
    box-sizing: border-box;
}

.login-form {
    display: flex;
    flex-direction: column;
}

    .login-form h1 {
        /*color: #333;*/
        margin-bottom: 1.5rem;
        font-size: 24px;
        text-align: center;
        font-weight: normal;
    }

    .login-form h2 {
        margin-bottom: 1.5rem;
        font-size: 16px;
        text-align: center;
        font-weight: normal;
    }

    .login-form p {
        margin-bottom: 1rem; /* Aumenta el espacio antes del campo de entrada */
        font-size: 16px; /* Asegúrate de que el texto sea legible */
    }


.input-group {
    margin-bottom: 1rem;
}

    .input-group label {
        font-weight: 500;
    }

.input-field {
    width: 100%;
    padding: 12px 10px;
    margin: 4px 0;
    display: inline-block;
    border: 1px solid rgb(236, 236, 237);
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    outline: transparent solid 2px;
}

    .input-field:focus {
        border-color: #035e87;
    }
/* Estilos para los mensajes de error */
.alert-danger {
    color: #b02a37; /* Un rojo más oscuro para mejor contraste */
    background-color: #F8D7DA; /* Un rosa muy claro para el fondo del mensaje de error */
    border-color: #f5c6cb; /* Un borde sutil */
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px; /* Espacio antes del formulario */
    font-size: 14px; /* Tamaño de fuente sutil */
}

/* Estilos para los mensajes informativos */
.alert-info {
    color: #01222f;
    background-color: #97bdcd;
    border-color: #bee5eb;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.checkbox {
    display: block;
    padding-left: 15px;
    text-indent: -15px;
    font-size: 16px;
    margin-bottom: 10px;
}

    .checkbox input {
        width: 15px;
        height: 15px;
        padding: 0;
        margin: 0;
        vertical-align: bottom;
        position: relative;
        top: -1px;
        accent-color: #035e87;
    }

button, .link-as-button {
    width: 100%;
    background-color: #024765;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0;
    text-align: center;
}

    button:hover, .link-as-button:hover {
        background-color: #01222f;
        text-decoration: none;
    }

a {
    color: #4285f4;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.link {
    font-size: 16px;
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.login-logo {
    max-width: 115px;
    height: auto;
}

@media (max-width: 600px) {
    .login-container {
        background: none;
        box-shadow: none;
        padding: 20px 0;
    }

    .login-background {
        background: #F8FBFC;
        align-items: normal;
    }

    .login-logo {
        max-width: 150px;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .no-display-mobile {
        display: none;
    }
}

.alert-danger {
    color: #b02a37; /* Un rojo más oscuro para mejor contraste */
    background-color: #F8D7DA; /* Un rosa muy claro para el fondo del mensaje de error */
    border-color: #f5c6cb; /* Un borde sutil */
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 20px; /* Espacio antes del formulario */
    font-size: 14px; /* Tamaño de fuente sutil */
}

    .alert-danger .validation-summary-errors {
        padding: 5px 25px;
    }

.p-center {
    text-align: center;
    font-weight: 500;
}

