@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
}
input{
    outline: none;
}
.alert-danger{
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #f8d7da;
    background-color: #f8d7da;
    color: #721c24;
    display: none;
}
.show{
    display: block !important;
}
.d-flex{
    display: flex;
}
.flex-column{
    flex-direction: column;
}
.justify-content-start{
    justify-content: start;
}
.align-items-start{
    align-items: start;
}
.mt-c-2{
    margin-top: 2rem;
}
.gap-3{
    gap: 10px;
}
.w-100{
    width: 100%;
}
.pad-10{
    padding: 10px 10px;
}
.br-50{
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.radius-5{
    border-radius: 5px;
}
.flex-wrap{
    flex-wrap: wrap;
}
.file-input{
    min-width: 200px;
}
.file-input p{
    margin-top: 5px;
    font-size: 12px;
    word-wrap: break-word;
}
.form-container{
    width: 100%;
    min-height: 100vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.form-container .row{
    width: 80%;
    margin: 0px auto;
}
.form-title{
    text-align: center;
}
.form-container .row form .row-1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}
.form-container .row form .row-2{
    display: flex;
    align-items: center;
    margin-top: 2rem;
}
.form-container .row form .row-1 div{
    width: 33%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}
.form-container .row form .row-2 div{
    width: 25%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}
#form label{
    font-size: 14px;
}
.form-container .row form .row-1 div input, .form-container .row form .row-1 div select{
    width: 90%;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    font-size: 14px;
    background: transparent;
}
.form-container .row form .row-2 div input, .form-container .row form .row-2 div select{
    width: 90%;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    font-size: 14px;
    background: transparent;
}
.agree-terms{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.sub-btn{
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #00b300 !important;
    color: #fff;
    width: 200px;
    padding: 10px 0px;
    border: 0px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600px;
    cursor: pointer;
}
.submitted{
    background: green !important;
}
form p{
    color: grey;
    margin-top: 2rem;
    font-size: 15px;
}
.loader{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}
.loader-show{
    display: flex;
}
.confirmation-modal{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    display: none;
}
.confirmation-modal .content{
    width: 50%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 5px;
}
.confirmation-modal .content .top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.close-confirm{
    width: 30px;
    cursor: pointer;
    margin-left: auto;
    display: block;
}
.d-none{
    display: none;
}
.btn-file{
    padding: 5px 10px;
    border-radius: 8px;
    background-color: transparent;
    border: 1px solid rgb(124, 124, 124);
    cursor: pointer;
    
}
@media screen and (max-width:850px) {
    .form-container .row{
        width: 90%;
        margin: 0px auto;
    }
}
@media screen and (max-width:774px) {
    .form-container .row form .row-1{
        flex-direction: column;
        gap: 20px;
        margin-top: 20px !important;
    }
    .form-container .row form .row-2{
        flex-direction: column;
        gap: 20px;
        margin-top: 20px !important;
    }
    .mt-c-2{
        margin-top: 20px !important;
    }
    .file-input{
        margin-top: 20px !important;
    }
    #form p{
        margin-top: 20px;
    }
    .agree-terms{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .form-container .row form .row-1 div{
        width: 100%;
    }
    .form-container .row form .row-2 div{
        width: 100%;
    }
    .form-container .row form .row-1 div input, .form-container .row form .row-1 div select{
        width: 100%;
    }
    .form-container .row form .row-2 div input, .form-container .row form .row-2 div select{
        width: 100%;
    }
    .confirmation-modal .content{
        width: 70%;
    }
    .confirmation-modal .content .top h2{
        font-size: 19px;
    }
    .file-input{
        width: 100% !important;
    }
}
@media screen and (max-width:400px) {
    form p{
        font-size: 14px;
    }
    .agree-terms > label{
        font-size: 14px;
    }
    .form-title {
        font-size: 22px;
    }
    .confirmation-modal .content{
        width: 90%;
    }
    .confirmation-modal .content .top img{
        width: 80% !important;
    }
    .confirmation-modal .content .top img{
        width: 80% !important;
    }
    .confirmation-modal .content .top h2{
        font-size: 17px;
    }
}