.verify-email-form {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 640px;
    width: 100%;
    padding: var(--padding-large);
    margin: var(--gap-xxlarge) 0;
    border-radius: var(--cornerring);
}

.verify-email-form .verify-email-header {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.verify-email-form .verify-email-header h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.verify-email-form .loader {
    width: 20px;
    height: 20px;
    border: 2px solid #414346;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.verify-email-form .input-field {
    flex-direction: row;
    column-gap: 10px;
}

.verify-email-form .input-field input {
    width: 48px;
    height: 48px;
    padding: 12px 16px 12px 19px;
    border-radius: var(--cornerbase);
    outline: none;
    text-align: center;
    border: 1px solid var(--rwt-main-color);

    font-size: 16px;
}

.verify-email-form .input-field input.filled {
    border: 1px solid var(--rwt-main-color);
    background: var(--rwt-bg-color);
    color: var(--rwt-text-color);
}

.verify-email-form .input-field input:disabled {
    border: none;
    background-color: #FFFFFF;
}

.verify-email-form .input-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.verify-email-form .input-field input::-webkit-inner-spin-button,
.verify-email-form .input-field input::-webkit-outer-spin-button {
    display: none;
}

.verify-email-form button {
    height: var(--size-component-large);
    padding: 0 var(--padding-base);
    border-radius: var(--cornerbase);

    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

.verify-email-form button:disabled {
    background: #0035711F;
    color: #66696D;
}

.swal2-popup {
    padding-bottom: 0;
}

.swal2-popup .swal2-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 24px !important;
    color: var(--text-default) !important;
}

.swal2-popup .swal2-html-container {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: var(--text-weak) !important;
    line-height: 24px !important;
}

.swal2-popup .swal2-actions {
    margin: 1.25em 28px !important;
}

.swal2-popup .swal2-actions .swal2-confirm {
    width: 100%;
    background: var(--rwt-bg-color);
    color: var(--rwt-text-color);
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}