body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
    overflow-x: hidden;
    background: url("./img/bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%!important;
    background-color: #F9F9F9;
}

* {
    box-sizing: border-box;
}

.page-parent {
    width: 100%;
    height: 100%;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 100px 0;
}

.page-parent .custom-design-parent {
    max-width: 100%;
}

.page-parent .logo {
    text-align: center;
}

.page-heading {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-heading .page-heading-title {
    text-align: center;
    color: #3D3D3D;
    font-size: 24px;
    text-decoration: none;
    margin-bottom: 45px;
    position: relative;
    width: max-content;
}

/* .page-heading .page-heading-title:after {
    content: '';
    width: 160px;
    height: 4px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1ABC9C;
    opacity: 0.5;
} */

.custom-content-parent {
    padding: 40px 90px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    position: relative;
}

.custom-content-parent.has-title {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    position: relative;
    padding: 0 0 40px 0;
}

.custom-content-parent.has-title .custom-title {
    background-color: #3b3b3b;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    text-align: center;
}

.custom-content-parent.has-title .alert-parent {
    margin: 40px auto 16px;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 1px 1px 13px 13px #efefef;
    position: relative;
    padding: 0 16px;
}

.custom-content-parent.has-title .alert-parent::before {
    content: '!';
    width: 20px;
    height: 100%;
    background-color: #1abc9c;
    color: #fff;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-content-parent.has-title .form-wrapper {
    width: 100%;
    padding: 16px 95px 0;
}

.custom-content-parent .number {
    font-size: 16px;
    color: #3D3D3D;
    position: absolute;
    bottom: -30px;
    left: 5px;
}

.custom-design-form {
    width: 100%;
}

.custom-design-form .custom-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.required-parent label:after {
    content: "*";
    color: #f00;
    font-size: 20px;
    margin-left: 5px;
}

.custom-form-group label,
.custom-form-group .custom-label {
    font-size: 16px;
    color: #3D3D3D;
    margin-bottom: 12px;
    padding: 0 4px;
    display: block;
    width: 100%;
    text-align: right;
}

.custom-form-group .custom-input {
    font-size: 16px;
    padding: 12px 32px;
    background-color: #fff;
    border: 1px solid #3D3D3D!important;
    height: 48px;
    border-radius: 24px;
    color: #3D3D3D;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
}

.custom-form-group .custom-input-show-data {
    font-size: 16px;
    padding: 12px 32px;
    background-color: #fff;
    border: 1px solid #3D3D3D!important;
    height: 48px;
    border-radius: 24px;
    color: #CECECE;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
}

.custom-form-group .has-icon-parent {
    position: relative;
    width: 100%;
}

.custom-form-group .has-icon-parent input,
.custom-form-group .has-icon-parent select {
    width: 100%;
    z-index: 2;
    background-color: transparent;
    position: relative;
}

.custom-form-group input:focus,
.custom-form-group select:focus,
.custom-form-group input:focus-visible,
.custom-form-group select:focus-visible {
    border: 1px solid #1ABC9C!important;
    outline: none;
}

.custom-form-group .has-icon-parent .icon {
    width: 15px;
    height: 15px;
    background: url('./img/icon-edit.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    z-index: 1;
}

.custom-form-group .has-icon-parent.select .icon {
    background: url('./img/arrow-down.png');
    width: 20px;
    height: 20px;
    background-size: contain;
}

.custom-form-group input::placeholder {
    opacity: 0.6;
}

.custom-form-group .custom-select {
    font-size: 16px;
    padding: 12px 32px;
    background-color: #fff;
    border: 1px solid #3D3D3D!important;
    height: 48px;
    border-radius: 24px;
    color: #3D3D3D;
    text-align: right;
    font-family: inherit;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.custom-form-group .custom-select::-ms-expand {
    display: none;
}

.custom-primary-btn {
    width: 100%;
    color: #fff;
    background-color: #1ABC9C!important;
    height: 40px;
    border-radius: 24px;
    padding: 0!important;
    margin: 40px 0!important;
    outline: unset;
    border: 1px solid #1ABC9C;
    box-shadow: unset;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s;
}

.custom-primary-btn:hover {
    color: #1ABC9C;
    background-color: #fff!important;
}

.custom-transparent-btn {
    width: 100%;
    color: #fff;
    background-color: #fff;
    color: #1ABC9C;
    height: 40px;
    border-radius: 24px;
    padding: 0!important;
    outline: unset;
    border: 1px solid #1ABC9C;
    box-shadow: unset;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.5s;
    margin-bottom: 16px;
}

.custom-transparent-btn:hover {
    color: #fff;
    background-color: #1ABC9C!important;
}

.custom-primary-link {
    width: 100%;
    color: #fff;
    background-color: #1ABC9C!important;
    height: 40px;
    border-radius: 24px;
    padding: 0!important;
    margin: 40px 0 0!important;
    outline: unset;
    border: 1px solid #1ABC9C;
    box-shadow: unset;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.5s;
}

.custom-primary-link:hover {
    color: #1ABC9C;
    background-color: #fff!important;
}

.custom-cont-design .cont-img {
    text-align: center;
}

.custom-cont-design .cont-img img {
    max-width: 100%;
}

.custom-cont-design .cont-txt {
    text-align: center;
}

.custom-cont-design .cont-txt h3 {
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
}

.show-data-parent {
    text-align: center;
    margin: 40px 30px 24px;
}

.custom-design-form .title-center {
    margin: 40px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.custom-design-form .from-info-parent h3,
.custom-design-form .from-info-parent {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.custom-design-form .radio-parent {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-design-form .radio-parent .custom-form-group {
    flex-direction: row;
    align-items: flex-end;
}

.custom-design-form .radio-parent .custom-form-group:first-child {
    margin-right: 8px;
}

.custom-design-form .radio-parent .custom-form-group input {
    margin-bottom: 0;
}

.underlined-txt {
    text-decoration: underline;
}

@media ( max-width:992px) {
    .page-parent {
        padding: 0 15px;
        width: 100%;
    }
    .page-heading .page-heading-title {
        font-size: 16px;
    }
    .page-heading .page-heading-title:after {
        display: none;
    }
    .custom-content-parent {
        padding: 40px 30px;
    }
    .custom-content-parent.has-title .form-wrapper {
        padding: 16px 30px 0;
    }
    .custom-form-group .custom-input-show-data,
    .show-data-parent,
    .custom-form-group .custom-input {
        font-size: 14px;
    }
    .custom-content-parent.has-title .custom-title {
        padding: 8px;
        font-size: 14px;
    }
    .custom-content-parent.has-title .alert-parent {
        font-size: 12px;
    }
}

.footer-redirect {
    color: #ffffff;
    margin-top: 40px;
    background: #3b3b3b;
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    text-align: center;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.label-status {
    padding: 10px;
    margin-right: 10px;
    color: #1abc9c;
    font-weight: bold;
}
