#register-wrapper {
    padding: clamp(90px, 22vw, 170px) 0 100px;
    background-color: rgb(0, 140, 238);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 100vh;
}

#register-wrapper .register-form-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

#register-wrapper .register-form-wrapper .form-wrapper {
    width: 100%;
    z-index: 2;
    max-width: 1066px;
    padding: 40px 40px;
    border-radius: 16px;
    background-color: rgb(255, 255, 255);
}

#register-wrapper .register-form-wrapper .form-wrapper .register-form-header {
    text-align: center;
    font-size: clamp(22px, 4vw, 56px);
    font-weight: 500;
}

#register-wrapper .register-form-wrapper .form-wrapper form {
    margin: 40px 0 0;
}

#register-wrapper .register-form-wrapper .form-wrapper form .form-control-wrapper {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
}

#register-wrapper .register-form-wrapper .form-wrapper form .form-control-wrapper label {
    margin-left: 15px;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
}

#register-wrapper .register-form-wrapper .form-wrapper form .form-control-wrapper input {
    height: 60px;
}

#register-wrapper .register-form-wrapper .form-wrapper form .form-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

#register-wrapper .register-form-wrapper .form-wrapper form .form-btn button {
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    background-color: rgb(206, 53, 81);
    color: rgb(255, 255, 255);
    transition: 0.5s ease;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
}

#register-wrapper .register-form-wrapper .form-wrapper form .form-btn button:hover {
    background-color: rgb(0, 140, 238);
}

#register-wrapper .register-form-wrapper .form-wrapper form .form-btn a {
    color: rgb(206, 53, 81);
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 500;
}

#register-wrapper .register-form-wrapper .form-wrapper form .form-btn a:hover {
    color: rgb(0, 140, 238);
}

#register-wrapper .form-image-1 {
    position: absolute;
    top: 10%;
    left: 0;
}

#register-wrapper .form-image-1 img {
    width: 100%;
    max-width: clamp(250px, 40vw, 500px);
}

#register-wrapper .form-image-2 {
    position: absolute;
    bottom: 10%;
    right: 0;
    z-index: 1;
}

#register-wrapper .form-image-2 img {
    width: 100%;
    max-width: clamp(250px, 40vw, 500px);
}

.register-sms-wrapper {
    width: 100%;
    max-width: 1066px;
}

.register-sms-wrapper .bgWhite {
    background: white;
    box-shadow: 0px 3px 6px 0px #cacaca;
    border-radius: 16px;
}

.register-sms-wrapper .bgWhite .sms-form-wrapper .title {
    padding-top: 20px;
    color: rgb(43, 43, 43);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 500;
}

.register-sms-wrapper .bgWhite .sms-form-wrapper form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.register-sms-wrapper .bgWhite .sms-form-wrapper form p{
    margin: 0;
}

.register-sms-wrapper .bgWhite .sms-form-wrapper form input {
    display: inline-block;
    width: 58px;
    height: 73px;
    text-align: center;
    border-radius: 2px;
    border: none;
    background-color: rgba(97, 190, 255, 0.5);
}

.register-sms-wrapper .bgWhite .sms-form-wrapper .customBtn {
    border: none;
    position: relative;
    z-index: 999;
    border-radius: 8px;
    padding: 10px 30px;
    background-color: rgb(0, 140, 238);
    color: rgb(255, 255, 255);
    transition: 0.5s ease;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
}

.register-sms-wrapper .bgWhite .sms-form-wrapper .customBtn:hover {
    color: rgb(0, 140, 238);
    background-color: rgba(97, 190, 255, 0.5);
}

.swal2-popup {
    height: 250px;
    width: 100%;
    max-width: 730px;
    aspect-ratio: 710/356;
}

.swal2-popup .swal2-title {
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
}

.swal2-popup .swal2-html-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
}

.swal2-popup .swal2-actions {
    gap: 10px;
    margin: 0;
}

.swal2-popup .swal2-actions .swal2-cancel {
    border: none;
    background-color: rgb(206, 53, 81);
}

.swal2-popup .swal2-actions .swal2-confirm {
    border: none;
    background-color: rgb(206, 53, 81);
}

.password-form {
    width: 100%;
    display: none;
}

.password-form form {
    width: 100%;
    max-width: 625px;
    background-color: rgb(255, 255, 255);
    border-radius: 16px;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.password-form form .form-control-password {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.password-form form .form-control-password label {
    margin-left: 13px;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
}

.password-form form .form-control-password .password-input-wrapper {
    position: relative;
}

.password-form form .form-control-password .password-input-wrapper input {
    height: 50px;
    border-radius: 55px;
    background-color: rgba(97, 190, 255, 0.5);
    padding-left: 20px;
}

.password-form form .form-control-password .password-input-wrapper input:focus {
    box-shadow: none;
    outline: none;
}

.password-form form .form-control-password .password-input-wrapper input::placeholder {
    color: rgba(43, 43, 43, 0.5);
}

.password-form form .form-control-password .password-input-wrapper span {
    position: absolute;
    top: 25%;
    right: 5%;
}

.password-form form .form-control-password .password-input-wrapper span img {
    width: 18px;
    cursor: pointer;
}

.password-form form .form-control-password .error {
    text-align: center;
    color: rgb(206, 53, 81);
}

.password-form form .form-control-password button {
    background-color: rgb(206, 53, 81);
    padding: 10px 30px;
    border-radius: 8px;
    border: none;
    color: rgb(255, 255, 255);
    margin: 0 auto;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}

.password-form form .form-control-password button:hover {
    background-color: rgb(0, 140, 238);
}

#resendBtn {
    border: none;
    background: none;
    outline: none;
    cursor: not-allowed;
    color: gray;
    text-decoration: underline;
    margin-left: 5px;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 70px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 658px) {
    #register-wrapper .form-image-1 {
        top: 18%;
    }
}

@media (max-width: 576px) {
    #register-wrapper .register-form-wrapper {
        margin-top: 50px;
    }

    .register-sms-wrapper .bgWhite .sms-form-wrapper form input {
        width: 35px;
        height: 50px;
    }
}

@media (max-width: 366px) {
    #register-wrapper .form-image-1 {
        top: 20%;
    }
}
