.modalCustom .modal-content{
    border-radius: 20px;
}
.modalCustom .modalCustom__header{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8px;
}
.modalCustom .modalCustom__header_logo{
    width: 98px;
}
.modalCustom .modalCustom__header .btn-close{
    position: absolute;
    right: 12px;
    top: 12px;
}

.modalCustom .modal-body{
    padding-top: 0;
}
.modalCustom .form {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
}
.modalCustom .form .form-name{
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-align: left;
    padding-bottom: 6px;
}

.modalCustom .form button{
    border: 2px solid rgba(148, 173, 151, 1);
    background: rgba(148, 173, 151, 1);
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    padding: 8px 18px;
    cursor: pointer;
}

.modalCustom .form button:hover{
    color: rgba(148, 173, 151, 1);
    background: #ffffff;
}
.modalCustom .form .form-control{
    background: #ffffff;
    margin: 0;
    font-size: 18px;
    color: #393A43FF;
    outline: none;
    width: 100%;
    font-weight: 500;
    border: 1px solid rgba(148, 173, 151, 1);
    border-radius: 20px;
    vertical-align: top;
    line-height: normal;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-clip: padding-box;
    padding: 11px 25px;
    height: 44px;
}


.modalCustom .form .form-control:disabled{
    background: #333333FF;
    color: #ffffff;
}
.modalCustom .form .form-control:focus,:hover{
    border-color:#D9A841FF;
    outline: none;
    box-shadow: inherit;
}
.modalCustom .form .form-control::-webkit-input-placeholder{
    color: #333333FF;
}
.modalCustom .form .form-control:-moz-placeholder{
    color: #333333FF;
}
.modalCustom .form .form-control:-ms-input-placeholder{
    color: #333333FF;
}
.modalCustom .form .form-control.error{
    border-color: #BF2324FF;
}