/* General styles */
html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-bottom: 60px;
}

footer {
    margin-top: auto;
    position: relative;
    width: 100%;
    background-color: #f8f9fa;
    border-top: 1px solid #e4e5e7;
    padding: 1rem 0;
    text-align: center;
}

.form-control {
    margin-bottom: 15px;
}

.btn-block {
    width: 100%;
}

/* Login form styles */
.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
    padding: 20px;
}

.login-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

@media (max-width: 768px) {
    .login-form {
        padding: 20px;
        max-width: 100%;
    }
}

.login-form input, .login-form button {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.login-form button {
    background-color: #00bfff;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.login-form button:hover {
    background-color: #009acd;
}

/* Estilo general para el checkbox */
.form-check {
    display: flex;
    align-items: center; /* Alinea verticalmente el checkbox y el texto */
    margin-top: 15px; /* Espaciado superior */
}

.form-check-label {
    font-size: 14px; /* Tamaño del texto */
    cursor: pointer; /* Cambia el cursor al pasar el mouse sobre el texto */
}

/* Estilo específico para el checkbox dentro de .login-form */
.login-form input[type="checkbox"] {
    width: 15px; /* Adjust the width */
    height: 15px; /* Adjust the height */
    margin-right: 10px;
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid #007bff;
    border-radius: 0.25rem;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, border-color 0.3s;
}

/* Estilo cuando el checkbox está seleccionado */
.login-form input[type="checkbox"]:checked {
    background-color: #007bff;
    border-color: #007bff;
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3e%3cpath fill="white" d="M13.485 2.828a.6.6 0 0 1 0 .848L6.682 10.48a.6.6 0 0 1-.848 0L3.515 8.161a.6.6 0 0 1 0-.848l.848-.848a.6.6 0 0 1 .848 0L6.258 8.08l5.532-5.531a.6.6 0 0 1 .848 0l.847.848z"/%3e%3c/svg%3e');
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}


/***********************************************************************************************/
/*Resgister Style*/

.container-register {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Hace que el contenedor ocupe toda la altura de la pantalla */
}

.register-form {
    width: 100%;
    max-width: 400px; /* Ajusta el tamaño máximo del formulario */
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.register-form h2 {
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
}

/**************************************************************************************************/
/*pass change*/
.container-change-password {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Hace que el contenedor ocupe toda la altura de la pantalla */
}

.change-password-form {
    width: 100%;
    max-width: 400px; /* Ajusta el tamaño máximo del formulario */
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.change-password-form h2 {
    margin-bottom: 20px;
}
