@charset "UTF-8";
.warranty-verify-page {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.warranty-verify-page h1 {
    font-size: 25px;
}
.warranty-verify-page .warranty-verify-step {
    margin: 20px 0;
    display: flex;
    width: 100%;
    justify-content: center;
    text-align-last: center;
}
.warranty-verify-page .warranty-verify-step .row {
    width: 100%;
}
.warranty-verify-page .warranty-verify-step .number {
    display: inline;
    background: #f9f9f9;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 50%;
    font-weight: bold;
    color: #000;
    font-size: 20px;
}
.warranty-verify-page .warranty-verify-step .active .number {
    background: var(--color1);
    color: #FFF;
}
.warranty-verify-input-step {
    margin: clamp(58px, 7vw, 78px) 0 0;
    width: 100%;
    label {
        position: absolute !important;
        top: -12px;
        right: 24px;
        z-index: 1;
        font-size: clamp(14px, 2vw, 16px);
        background: white;
        padding-inline: 10px;
        color: var(--black);
        line-height: 20px;
        margin: 0 !important;
        display: block;
        font-weight: 500;
        font-size: clamp(16px, 2vw, 18px);
        font-family: var(--Medium);
    }
    input {
        padding: 12px clamp(24px, 3vw, 36px) !important;
        height: clamp(72px, 6vw, 96px);
        display: block;
        box-sizing: border-box;
        font-family: inherit;
        width: 100%;
        transition: 0.4s;
        font-size: 16px !important;
        text-align: right;
        border: 0;
        border: 1px solid #DFE6F0;
        appearance: none;
        -webkit-appearance: textfield;
        transition: 0.4s;
        border-radius: clamp(16px, 2vw, 32px);
        font-family: var(--Regular);
        &:focus {
            border-color: var(--color2);
            outline: none;
        }
    }
}
.warranty-verify-input-step .error-msg {
    display: none;
    color: #dd2424;
    font-weight: 600;
    font-size: 12px;
    margin: 10px 0;
}
.warranty-verify-input-step .input-help {
    display: block;
    margin-top: 10px;
    color: #697586;
    font-size: 14px;
    line-height: 24px;
}
.warranty-verify-input-step .warranty-verify-submit button:disabled {
    cursor: wait;
    opacity: 0.65;
}
.warranty-verify-input-step-2, #alert-warranty-verify-box, #loading-warranty-verify-box {
    display: none;
}
#loading-warranty-verify-box {
    text-align-last: center;
    margin-top: 20px;
}
.alert-warranty-verify {
    position: relative;
    text-align: center;
    padding: 97px clamp(16px, 8vw, 108px) 24px;
    margin-top: 40px;
    background-color: #FCF8E3;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    font-family: var(--Medium);
    line-height: 32px;
    .warranty-icon {
        position: absolute;
        top: 24px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        font-size: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    &.success {
        background-color: #E1F4E0;
        color: #004A1B;
        .warranty-icon {
            color: #71B84D;
            background: white;
        }
    }
    &.error {
        background-color: #FFF1F0;
        color: #C73B30;
        .warranty-icon {
            background: white;
            color: #EF665B;
        }
    }
    &.info {
        background: #E4F4FC;
        color: #3C3D3E;
        .warranty-icon {
            background: white;
            color: #5B7EEF;
        }
    }
    .btn-3 {
        color: black;
        background: white;
        border: 2px solid #F4832333;
        &:hover {
            background: var(--color2);
            color: white;
        }
    }
}
.loading-warranty-verify {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.loading-warranty-verify div {
    position: absolute;
    border: 4px solid var(--color1);
    opacity: 1;
    border-radius: 50%;
    animation: loading-warranty-verify 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading-warranty-verify div:nth-child(2) {
    animation-delay: -0.5s;
}
@keyframes loading-warranty-verify {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    4.9% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }
    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}
.data-warranty-verify-box {
    font-weight: bold;
    display: flex;
    justify-content: center;
}
.data-warranty-verify-box span {
    margin: 15px;
}
.button-phone-warranty-verify-box {
    margin-top: 20px;
}
