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%;
    height: 100%;
}

.container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/background.png') no-repeat center center/cover;
    filter: blur(1px);
    z-index: -1;
}

body {
    margin-bottom: 60px;
    height: 100%;
}

.container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Full height of the viewport */
}

.content {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    min-width: 400px;
}

.content-logo {
    margin-right: 0px;
    margin-bottom: 15px;
}

.titulo {
    font-weight: 600;
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 20px;
}

.subtitulo {
    font-weight: 400;
    font-size: 14px;
    margin: 0 0 12px 0;
    padding: 0;
    color:#999;
}

.login-input {
    width: 100%;
    padding: 5px;
    margin: 12px 0;
    box-sizing: border-box;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    font-size: 16px;
}

    .login-input:focus {
        border-color: #0078d4;
        background-color: rgb(232, 240, 254);
        outline: none;
    }

    .login-input::placeholder {
        color: #ccc;
        opacity: 1;
    }

    .login-input::-webkit-input-placeholder {
        color: #ccc;
    }

    .login-input:-ms-input-placeholder {
        color: #ccc;
    }

    .login-input::-ms-input-placeholder {
        color: #ccc;
    }

.button-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    margin-top: 20px;
}

.login-submit {
    background-color: #0078d4;
    border-color: #ccc;
    color: white;
    border-width: 0px;
    padding: 4px 14px 4px 14px;
}

.ayuda {
    margin: 16px 0;
}

    .ayuda a {
        color: #0078d4;
        font-size:14px;
    }


.disabled {
    background-color: #eee;
    color: #ccc;
}
