@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;
}
.form-container{
    width: 100%;
    min-height: 100vh;
    padding-top: 3rem;
}
.form-container .row{
    width: 100%;
    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: 1rem;
    flex-direction: column;
    gap: 10px;
}
.form-container .row form .row-2{
    display: flex;
    align-items: center;
    margin-top: 1rem;
    flex-direction: column;
    gap: 10px;
}
.form-container .row form .row-1 div{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}
.form-container .row form .row-2 div{
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 5px;
}
.form-container .row form .row-1 div input, .form-container .row form .row-1 div select{
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.form-container .row form .row-2 div input, .form-container .row form .row-2 div select{
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.5);
}
.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: 18px;
    font-weight: 600px;
    cursor: pointer;
}
.submitted{
    background: green !important;
}
form p{
    color: grey;
    margin-top: 2rem;
}
.loader, .loader-p{
    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-bewerbung, .close-confirm-personal{
    width: 30px;
    cursor: pointer;
    margin-left: auto;
    display: block;
}
@media screen and (max-width:850px) {
    .form-container .row{
        width: 100%;
        margin: 0px auto;
    }
}
@media screen and (max-width:774px) {
    .form-container .row form .row-1{
        flex-direction: column;
    }
    .form-container .row form .row-2{
        flex-direction: column;
    }
    .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;
    }
}
@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;
    }
}