@import url("home.css");
@import url("components/colors.css");
@import url("components/buttons.css");
@import url("components/sidebar.css");
@import url("components/project.css");
@import url("components/kanban.css");
@import url("components/datatable.css");


body{
    font-family: 'Kanit', sans-serif;
    background-color: #f5f5f5 !important;
}

.container{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.login-logo{
    background: url("../images/manizadark.png") no-repeat center;
    background-size: cover;
    width: 40%;
    height: 300px;
    margin: -150px auto 0 auto;
}

.form-component{
    width: 30%;
    margin: 0 auto;
}
.form-control{
    margin-bottom: 20px;
    box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.2);
}
.form-control:focus{
    border-color: var(--verdemaniza) !important;
    box-shadow: none !important;
    transform: scale(0.99);
}
.text-title{
    text-transform: uppercase;
    color: var(--verdemaniza);
    font-weight: 700;
    font-size: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.text-title span{
    margin-right: 10px;
    font-weight: 700;   
}

.flex-line{
    display: flex;
}


/* cards de formularios */
.card-modal{
    margin: 0 0 50px 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 20px;
    position: relative;
    width: 60%;
    min-width: fit-content;
}
.card-modal form{
    display: flex;
    flex-wrap: wrap;
}
.card-modal form p{
    font-weight: 700;
    margin-top: 20px;
}
.form-check{
    width: calc(100% - 30px);
    margin-left: 30px;
}
.form-check-input:checked{
    background-color: var(--verdemaniza) !important;
    border: none;
}

.pop-up{
    position: fixed;
    width: calc(100% - 150px);
    height: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(0, 0, 0, .05);
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 100px 20% 50px 20%;
    z-index: 1;
    overflow-y: auto;
    overscroll-behavior: none;
}
.pop-up .card-modal{
    z-index: 2;
    box-shadow: 0px 5px 50px -5px rgba(0, 0, 0, .3);

}


@media (min-width: 701px) and (max-width: 1024px) {
    .pop-up{
        padding: 100px 5% 50px 5%;
    }
}
@media (max-width: 700px) {
    .login-logo{
        width: 90%;
    }
    .form-component{
        width: 80%;
    }
    .card-modal{
        min-width: fit-content;
        padding: 15px;
    }
    .pop-up{
        width: 100%;
        padding: 100px 5% 50px 5%;
    }
    .pop-up .card-modal{
        box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, .4);
    
    }
    
    .text-title{
        font-size: 20px;
    }
    .text-title span{
        margin-right: 5px;
    }
}