.footer {
    font-size: 15px; /* Asegurando tamaño de fuente máximo de 15px */
    text-align: center; /* Centra el texto */
    padding: 30px 20px; /* Espaciado interno: 10px arriba/abajo, 20px izquierda/derecha */
    position: relative; /* Mantiene el footer en su lugar sin encimarse */
    width: 100%; /* Asegura que ocupe todo el ancho */
    box-sizing: border-box; /* Garantiza que el padding no rompa el ancho */
}


* {
    padding: 0;
    margin: 0;
    font-family: Open Sans, sans-serif !important;
    box-sizing: border-box;
}

/* Warning Form Input */
.warning {
    display: flex;
    border-bottom: 1.5px solid #e9edfb !important;
}

/* Warning Form Text */
.warning-text {
    display: none;
    color: #1E1E1B;
    font-size: 12px;
    font-weight: lighter;
}

.warning-span {
    color: #e9edfb;
}

/* Warning Text Visible */
.warning-text-visible {
    display: flex;
    transition: all 0.6s;
    margin: 10px 0 0;
}

/* Main Container */
.main-cont{
    display: flex;
    position: relative;
    flex-direction: column;
}

/* Container Welcome */
.cont-welcome {
    display: flex;
    background: linear-gradient(to right, #e9edfb, #e9edfb) !important;
    border-radius: 4px;
    border-bottom: 5px solid transparent; /* Solo el borde inferior */
    border-image: linear-gradient(to right, #fdc501 33%, #fdc501 33%);
    border-image-slice: 1; /* Asegura que el gradiente ocupe todo el borde inferior */
    margin-bottom: 20px; /* Añade más espacio debajo del borde */
}



.cont-welcome, .content-form{
    border-radius: 4px;
}

.cont-welcome{
    display: flex;
    background: linear-gradient(to right, #284688, #284688) !important;
}

.content-welcome{
    display: flex;
    width: 95.5%;
    height: 55%;
    flex-direction: column;
    font-size: 20px;
    color: white;
    margin: 20px;
}

.content-welcome p{
    margin: 10px 0 0;
    font-weight: lighter;
}

/* Container Form */
.cont-form{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative; /* Eliminamos el "absolute" */
    min-height: calc(100vh - 100px); /* Ajusta 100px según la altura del footer */
    padding-bottom: 5px; /* Espacio igual a la altura del footer */
}

.content-form{
    display: flex;
    width: 98%;
    height: 100%;
    background-color: white;
    box-shadow: 1px 3px 4px 0 gray;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* Content */
.cont-content {
    display: flex;
    width: 95%;
    height: 75%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Form */
.form {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

/* Item Form */
.form-item {
    display: flex;
    width: 100%;
    height: 24%;
    flex-direction: column;
}

/* Label */
.lbl-input {
    display: flex;
    width: 100%;
    font-size: 18px;
    margin: 0 0 20px;
    color: gray;
    position: relative;
    box-sizing: border-box;
}

.lbl-input span {
    position: absolute;
    top: 8px;
    left: 0;
    transition: 0.2s;
    color: #1E1E1B;
}

.lbl-input span.top {
    left: 0;
    top: -15px;
    background-color: white;
    font-size: 14px;
    /* color: black; */
    color: #1E1E1B;
}

/* Input */
.input-form {
    display: flex;
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    border-bottom: 1px solid gray;
    font-size: 18px;
    align-items: center;
    padding: 5px 0 5px;
    color: gray;
}

.input-form:focus {
    border-bottom: 1.5px solid black;
}

/* Item CheckBox */
.item-checkbox {
    display: flex;
    height: auto;
    flex-direction: column;
    margin: 1rem 0 2rem;
    justify-content: center;
    align-items: start;
}

.content-item-checkbox {
    display: flex;
}

.content-item-checkbox h2 {
    color: #1E1E1B;
    font-size: 14px;
    font-weight: lighter;
}

.text-color-check {
    color: black;
}

/* Checkbox */
.checkboxAttention {
    display: flex;
    height: 15px;
    width: 15px;
    margin-right: 5px;
    margin-top: -1px;
}

/* Warning */
.warning-checkbox {
    border: 5px solid #1E1E1B;
}

/* Container button */
.cont-btn {
    display: flex;
    width: 100%;
    height: auto;
    align-items: end;
}

/* Button */
.btn-new-conv {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
    justify-content: center;
    background-color: #e9edfb;
    border-radius: 2rem;
    border: 0;
    box-shadow: 2.5px 3px 2.5px -2px black;
    font-size: 19px;
    color: #1E1E1B;
    cursor: pointer;
    text-transform: uppercase;
    padding: 5px 0 0;
}

.btn-new-conv:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* @media Responsive */
/* @media 1024px */
@media(max-width: 1024px) {

    .content-welcome,
    .input-form {
        font-size: 15px;
    }

    .content-welcome,
    .content-form {
        width: 90%;
    }

    .cont-form {
        height: 360px;
        top: 0;
    }

    .cont-content {
        width: 92.5%;
    }

    .lbl-input {
        font-size: 12px;
    }

    .btn-new-conv {
        height: 35px;
        font-size: 15px;
    }
}

/* @media 425px */
@media (max-width: 350px) {
    .cont-welcome {
        height: 350px;
        align-items: start;
    }

    .content-welcome,
    .content-form {
        width: 87%;
    }

    .content-welcome {
        font-size: 18px;
        font-weight: bold;
        margin: 3rem 0 0;
        padding: 0 0 2rem;
    }

    .cont-welcome p {
        font-size: 14px;
        line-height: 18px;
        margin: 15px 0 30rem;
    }

    .cont-form {
        margin: 14rem 0 2rem;
        height: 500px;
    }

    .content-form {
        height: 100%;
    }

    .cont-content {
        width: 85%;
    }

    .lbl-input span {
        font-size: 16px;
        margin: -5px 0 0;
    }

    .btn-new-conv {
        padding: 10px 15px 10px;
        height: auto;
    }

    .warning-text-visible {
        margin: 5px 0 0;
    }

    .content-item-checkbox {
        font-size: 14px;
    }

    .form-item {
        margin: 1rem 0 1rem;
    }
}

/* @media 320px */
@media (max-width: 320px) {
    .cont-form {
        margin: 15rem 0 2rem;
    }
}