﻿#overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    cursor: pointer;
}

#loader {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 1001;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gray-class {
    color: white !important;
}

.buton-ingresar {
    font-style: normal;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 16px;
    width: 200px;
    background: #4b9d2e;
    font-weight: 400;
}
.buton-modal-actions {
    font-style: normal;
    text-decoration: none;
    font-size: 16px;
    background: #4b9d2e;
    font-weight: 400;
    color:white;
}

.font-family-poppins {
    font-family: 'poppins', sans-serif !important;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-fluid {
    display: flex;
    width: 100%;
    height: 100vh;
    padding-left: 0px;
}

#divImagenizquierda {
    width: 50%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

    #divImagenizquierda img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

#divFormulario {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
}

.form-container {
    width: 80%;
    max-width: 400px;
}

.form-outline {
    width: 100%;
    text-align: left;
}

.input-group {
    width: 100%;
}

.form-control {
    width: 100%;
    height: 45px;
    font-size: 16px;
}

.input-group-append {
    cursor: pointer;
    padding: 10px;
    background-color: #f1f1f1;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .container-fluid {
        flex-direction: column;
        height: auto;
    }

    #divImagenizquierda {
        display: none;
    }

    #divFormulario {
        width: 100%;
        height: 100vh;
        padding: 40px 20px;
    }

    .form-container {
        width: 100%;
        max-width: 350px;
    }
}

.btn:hover {
    filter: none !important;
    box-shadow: none !important;
    background-color: #4b9d2e;
    color:white;
}
