.registerForm {
    border: solid 1px #eee;
    border-radius: .25rem;
    padding: 15px;
}
label {
    padding-bottom: 10px;
}
.upload_Container {
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    border: dashed 2px #30303073;
    border-radius: .25rem;
    padding: 50px 0;
    cursor: pointer;
}
.upload_Container:hover {
    border: dashed 2px #303030;
}
.upload_Container > i {
    font-size: 45px;
    text-align: center;
}
#insurancePicture {
    display: block;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
#personalPicture {
    display: block;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.contain_RadioInp {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.radioBox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.course_Info {
    font-size: 12px;
    display: none;
    position: absolute;
    top: 6px;
    right: 70px;
    width: 280px;
    box-shadow: 0 2px 3px #ddd;
    background-color: #eee;
    text-align: center;
}
.submit {
    padding: 6px 60px;
    background-color: rgb(70, 127, 231) !important;
    color: #fff;
    border-radius: .25rem;
    border: none;
    margin-right: auto;
    cursor: pointer;
}
.submit:hover {
    background-color: rgb(73, 129, 233) !important;
}