.container-login {
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 5px #00000029;
    border: 0.699999988079071px solid #EDEDED;
    border-radius: 7px;
    opacity: 1;
}

.container-title {
    background: transparent url(../img/bg-quotation-responsive.jpg) 0% 0% no-repeat padding-box;
    border: 0.7px solid var(--unnamed-color-1dd595);
    border: 0.699999988079071px solid #1DD595;
    border-radius: 7px;
    opacity: 1;
    background-size: cover;
    background-position: center;
    background-origin: content-box;
    margin: 39px 23px 10px 23px;
    padding: 14px 9px 14px 9px;
}

.main-title {
    text-align: left;
    letter-spacing: 0.05px;
    color: #1DD595 !important;
    opacity: 1;
    font-size: 25px;
}

.second-title {
    text-align: left;
    letter-spacing: 0.02px;
    color: #0D0D0D;
    opacity: 1;
    font-size: 12px;
}

.label {
    text-align: left;
    letter-spacing: 0.02px;
    color: #0D0D0D;
    opacity: 1;
    font-size: 11px;
}

.container-form {
    margin: 10px 32px;
}

.link-forgot-pass-container {
    text-align: left;
}

.link-forgot-pass {
    text-align: left;
    text-decoration: underline !important;
    letter-spacing: 0.02px;
    color: #4F5F65 !important;
    opacity: 1;
    font-size: 11px;
}

.button-login-submit {
    height: 45px;
    background: #1DD595 0% 0% no-repeat padding-box;
    box-shadow: 0px 1px 1px #00000029;
    border: 1px solid #EDEDED;
    border-radius: 7px;
    opacity: 1;
    color: #FFF;
    font-size: 13px;
}

.button-login-submit:hover {
    background-color: #ADADAD;
}

.button-login-redirect {
    height: 30px !important;
    background: #FFFFFF 0% 0% no-repeat padding-box !important;
    box-shadow: 0px 1px 1px #00000029;
    border: 0.30000001192092896px solid #ADADAD;
    border-radius: 7px;
    opacity: 1;
    color: #0D0D0D;
    font-size: 13px;
    padding: 6px;
}

.button-login-redirect:hover {
    background-color: #ADADAD !important;
}

button {
    text-transform: none !important;
}

.container-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.container-form input {
    background: #F7F7F7 0% 0% no-repeat padding-box;
    border: 0.5px solid #ADADAD;
    border-radius: 7px;
    opacity: 1;
    font-size: 12px;
}

.container {
    max-width: 404px;
}

.content-wrap {
    padding: 20px 0;
}

.error-validator {
    text-align: left;
    letter-spacing: 0.02px;
    color: #f14668 !important;
    opacity: 1;
    font-size: 11px !important;
}

.center-text {
    text-align: center !important;
}

.alert-error {
    font-size: 11px !important;
}

.alert {
    padding: 0.7rem 0.2rem;
}

.checkbox-container {
    display: flex;
    align-items: normal;
    justify-content: flex-start;
}

.checkbox-round {
    display: none;
}

.checkbox-round+label {
    display: inline-block;
    width: 30px;
    height: 14px;
    position: relative;
}

.checkbox-round+label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    /* Borde gris */
}

.checkbox-round:checked+label::before {
    background-color: #fff;
    /* Blanco cuando está seleccionado */
    border-color: #ccc;
    /* Borde gris cuando está seleccionado */
}

.checkbox-round:checked+label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #1DD595;
    /* Verde cuando está seleccionado */
}


.terms {
    font-size: 12px;
    color: #0D0D0D;
}


@media (max-width: 990px) {
    .content-wrap {
        padding: 10px 0px 60px 0px;
    }

    .container {
        max-width: max-content;
    }

    .container-login {
        background: none;
        box-shadow: none;
        border: none;
        border-radius: 0px;
    }

    .container-title {
        margin: 39px 16px 10px 16px;
    }

    .container-form {
        margin: 10px 25px;
    }
}

@media screen and (max-width: 500px) {

    select:focus,
    textarea:focus,
    input:focus {
        font-size: 16px;
    }

}