.customFormEntrar {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    opacity: 0;
    z-index: 1040;
    transform: translateY(0px);
}

.customFormEntrar.show{
    animation: fadeIn 0.7s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(0px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.customFormEntrar.exit {
    animation: fadeOut 0.7s ease-out forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        transform: translateY(0px);
    }
}


.modal-body .container {
    max-width: 400px;
    padding: 0;
}

.modal-content {
    background-color: transparent;
    border: none;
}

.customFormEntrar .card {
    height: 370px;
    margin-top: auto;
    margin-bottom: auto;
    width: 400px;
    background-color: rgba(0, 0, 0, 0.9) !important;
    border: 1px solid white; /* Borde blanco sólido de 1px */
    border-radius: 10px; /* Opcional: bordes redondeados */
}

.social_icon span {
    font-size: 60px;
    margin-left: 10px;
    color: #FFC312;
}

.social_icon span:hover {
    color: white;
    cursor: pointer;
}

.card-header h3 {
    color: white;
}

.social_icon {
    position: absolute;
    right: 20px;
    top: -45px;
}

.input-group-prepend span {
    width: 50px;
    background-color: #FFC312;
    color: black;
    border: 0 !important;
}

input:focus {
    outline: 0 0 0 0 !important;
    box-shadow: 0 0 0 0 !important;

}

.remember {
    color: white;
}

.remember input {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    margin-right: 5px;
}

.login_btn {
    color: black;
    background-color: #FFC312;
    width: 100px;
}

.login_btn:hover {
    color: black;
    background-color: white;
}

.links {
    color: white;
    display: flex;
    align-items: center; /* Asegura que los elementos estén centrados verticalmente */
}

.links a {
    color: #007bff; /* Color celeste para el enlace */
    margin-left: 4px;
    text-decoration: none; /* Eliminar el subrayado por defecto */
}

.links a:hover {
    text-decoration: underline; /* Agregar subrayado cuando el enlace se pasa el cursor */
}
