/* Estilos inline para centralizar divs horizontalmente */
*{
    box-sizing: border-box;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

input[type="checkbox"].new-input ~ .checkbox-checked {
    display: none;
}
input[type="checkbox"].new-input:checked ~ .checkbox-checked {
    display: block;
}
input[type="checkbox"].new-input:checked ~ .checkbox-no-checked {
    display: none;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 175px;
}

.img-fluid{
    width: 100%;
    height: 300px;
}

footer {
    position: fixed;
    bottom: 0;
    display: flex;
    padding-top: 16px;
    padding-bottom: 16px;
    width: 100%;
    border-top: 1px solid #DCDCDC;
}

.footer-content {
    flex-grow: 1;
    text-align: left;
    margin-left: 16px;
}

.logos {
    display: flex;
    margin-right: 16px;
}

.logo-small {
    margin-left: 24px;
}

.text{
    color: #0E0E0F;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 100% */
    letter-spacing: 0.48px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #212529;
    text-decoration: none;
    text-align: center;
    background-color: transparent;
    border: 0px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

.btn-login{
    border-radius: 8px;
    background: #0863B8;
    color: #FFF;
    margin-right: 16px;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.btn-forgot-password {
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.05);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    width: 100%;
}
.cdb-buttons {
    display: flex;
    gap: 16px;
}

.card {
    border-radius: 8px;
    border: 1px solid #DCDCDC;
    /* padding: 24px; */

    /* display: flex; */
    width: 422px;
    padding: 24px;
    /* flex-direction: column;
    align-items: flex-start;
    gap: 32px; */
}

.negrito {
    font-weight: 700 !important;
    font-size: 18px;
    line-height: 24px;
}
.form-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    margin-top: 32px;
}

.p-5 {
    padding: 2rem !important;
}
.m-0 {
    margin: 0px !important;
}
.mb-3 {  
    margin-bottom: 1rem !important;
}

.form-control {
    width: 100% !important;
    padding: 16px 8px !important;
    border: 1px solid #DCDCDC!important;
    border-radius: 10px !important;
    background-color: #FFFFFF !important;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    line-height: 24px;
}
.form-control:focus-visible{
   outline: none;
}
.form-control::placeholder {
    color: #A09EB0;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    font-family: "Inter", sans-serif;
}
.cd-title {
    color: #0E0E0F;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.48px;
    margin-top: 0px;
    margin-bottom: 32px;
}
.cds-title {
    color: #0E0E0F;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin: 0px;
}
.pointer {
    cursor: pointer;
}
.checkbox-checked {
    display: flex;
    align-items: end;
}
.checkbox-no-checked {
    display: flex;
    align-items: end;
}
.input-error {
    border: 1px solid #DC2C41 !important;
    background-color: #FBEAEC !important;
}
.error-message {
    color: red;
    display: none;
    margin: 10px 0;
    font-size: 12px;
}

.error-message.visible {
    display: block;
}