﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.login-background {
    background-image: url("/images/background_login.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px) brightness(100%);
    height: 100%;
    width: 100%;
}

.login-container {
    background-color: #0d1e284d;
    border-radius: 10px;
}

    .login-container::before {
        filter: blur(20px);
    }

.validation-summary-errors > ul {
    list-style: none;
    padding-left: 0;
}

@media (max-width: 575px) {
    .login-container {
        margin-left: 10px;
        margin-right: 10px;
    }
}

.label-custom::after {
    background-color: inherit !important;
}

input:focus, textarea:focus, select:focus {
    border-color: #eae7e1 !important;
    box-shadow: 0 0 0 0.2rem rgba(234, 231, 225, 0.75) !important;
    outline: none;
}

/* Estilo personalizado para el checkbox */
.form-check-input:checked {
    background-color: #d4af37;
    border-color: #d4af37;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.form-check-input {
    cursor: pointer;
}
