@charset "UTF-8";

/* Estilos de registro */
.register {
    background: -webkit-linear-gradient(left, #3931af, #00c6ff);
    margin-top: 3%;
    padding: 3%;
}

.login-modal {
    background: -webkit-linear-gradient(left, #3931af, #00c6ff);
    padding: 1%;
}


.register-left {
    text-align: center;
    color: #fff;
    margin-top: 10%;
}

.register-right {
    background: #f8f9fa;
    border-top-left-radius: 10% 50%;
    border-bottom-left-radius: 10% 50%;
}

.login-modal-right {
    background: #f8f9fa;
    border-top-left-radius: 10% 50%;
    border-bottom-left-radius: 10% 50%;
}

.register-left img {
    margin-top: 15%;
    margin-bottom: 5%;
    width: 25%;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 1s infinite alternate;
}

.login-modal-left img {
    margin-top: 15%;
    margin-bottom: 5%;
    width: 25%;
    -webkit-animation: mover 2s infinite alternate;
    animation: mover 1s infinite alternate;
}


@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20px);
    }
}

.register-left p {
    font-weight: lighter;
    padding: 12%;
    margin-top: -9%;
}

.register .register-form {
    padding: 10%;
    margin-top: 10%;
}

.btnRegister {
    float: right;
    margin-top: 10%;
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    background: #0062cc;
    color: #fff;
    font-weight: 600;
    width: 50%;
    cursor: pointer;
}

.register-heading {
    text-align: center;
    margin-top: 8%;
    margin-bottom: -15%;
    color: #495057;
}

.login-heading {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
    color: #495057;
}

.btn-close {
    position: absolute !important;
    z-index: 2;
    border: 7px solid lightgray !important;
    width: 5px;
    height: 5px;
    border-radius: 10rem;
    color: #0062cc !important;
    background-color: #ECEFF1 !important;
    opacity: 1;
    top: -5px;
    right: -5px
}



/* Fin estilos de registro */

/* Estilos de validación */
.invalid-feedback {
    font-size: 0.875rem;
}

.form-select.is-invalid {
    background-image: none;
    /* quita icono feo si molesta */
}

.form-select.is-valid {
    background-image: none;
}

.form-control.is-invalid {
    background-image: none;
    /* quita icono feo si molesta */
}

.form-control.is-valid {
    background-image: none;
}

/* WhatsApp Floating Button */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.float:hover {
    background-color: #1EBE57;
    color: #FFF;
    transform: scale(1.1);
}