.bg {
    background-image: url("/img/front/helper-registration/bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    position: relative;
}

.card-form {
    background-color: #FFF;
    border-radius: 24px;
    padding: 40px;
}

.header-image {
    width: 100%;
    object-fit: cover;
}

.text-header {
    font-size: 36px;
    font-weight: 700;
    line-height: 136%;
}

.text-subheader {
    font-size: 18px;
    font-weight: 400;
    line-height: 152%;
}

.text-title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 136%;
}

.profile-pic-wrapper {
    width: 100%;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.pic-holder {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 0 0 0.2rem rgba(243, 245, 255, 1);
}

.pic-holder .pic {
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.pic-holder .upload-file-block,
.pic-holder .upload-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(90, 92, 105, 0.7);
    color: #f8f9fc;
    font-size: 10px;
    font-weight: 600;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.pic-holder .upload-file-block {
    cursor: pointer;
}

.pic-holder:hover .upload-file-block,
.uploadProfileInput:focus ~ .upload-file-block {
    opacity: 1;
}

.pic-holder.uploadInProgress .upload-file-block {
    display: none;
}

.pic-holder.uploadInProgress .upload-loader {
    opacity: 1;
}

/* Snackbar css */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    transform: translateX(-50%);
}

.snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

small {
    font-size: 12px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 152%;
}

label {
    color: var(--Text-Semi-Black);
    font-size: 16px;
    font-weight: 500;
    line-height: 152%;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2312A6A4' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-select, .form-control {
    border-radius: 8px;
    border: 1px solid var(--Text-Semi-White);
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 152%;
    color:#A7B4BE;
}

.form-select option {
    color: #13191D;
}

/*placeholder*/
.form-control::placeholder {
    color: #A7B4BE;
}

.required-label {
    color: #13191D;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 152%;
}

.agree {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 152%;
    color: #13191D;
}

.agree a {
    color: #13191D;
    text-decoration: none;
    font-weight: 700;
}

thead {
    border: 1px solid var(--Text-Background, #F3F5F7);
    background: #0A484A !important;
    color: #fff;
}

table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #DEE2E6;
}

.btn-submit {
    background: var(--linear, linear-gradient(180deg, #12A6A4 0%, #0F807F 100%));
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 152%;
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    box-shadow: 0 0 0 0.2rem rgba(243, 245, 255, 1);
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    section {
        font-size: 14px;
        font-weight: 400;
    }

    .card-form {
        padding: 20px;
    }

    .text-header {
        font-size: 24px;
    }

    .text-subheader {
        font-size: 16px;
    }

    .text-title {
        font-size: 20px;
    }

    .pic-holder {
        width: 80px;
        height: 80px;
    }

    .pic-holder .pic {
        height: 100%;
        width: 100%;
    }

    .pic-holder .upload-file-block,
    .pic-holder .upload-loader {
        font-size: 8px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 10px 12px;
        font-size: 14px;
    }

    .required-label {
        font-size: 14px;
    }

    .agree {
        font-size: 14px;
    }

    .agree a {
        font-size: 14px;
    }

    .form-select, .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
}
