.woocommerce {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}
body > main > div > div > form > p.form-row > label {
    width: 20%;
    text-align: center;
}
form.woocommerce-form.woocommerce-form-track-order.track_order {
    width: 100%;
    max-width: 1366px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    padding: 50px 10px;
    cursor: default;
}

.mas_header_page_shipment_tracking {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.mas_header_page_shipment_tracking {
    text-align: center;
    padding: 60px 0 60px 0;
    position: relative;
}

.page_title {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(90deg, #1E3A8A, #2563EB, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 0px 15px rgba(37, 99, 235, 0.8);
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out, glow 1.5s infinite alternate;
    position: relative;
}

.page_title::after {
    content: "";
    display: block;
    width: 380px;
    height: 8px;
    background: linear-gradient(to right, #2563EB, #60A5FA);
    margin: 14px auto 0;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.5s ease-out;
    border-radius: 4px;
}

.mas_header_page_thank_you:hover .page_title::after {
    opacity: 1;
    transform: scaleX(1);
}

.page_short_title {
    font-size: 25px;
    font-weight: 500;
    color: #4B5563;
    margin-top: 10px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0px 0px 10px rgba(37, 99, 235, 0.6);
    }
    to {
        text-shadow: 0px 0px 20px rgba(96, 165, 250, 0.9);
    }
}

@media (max-width: 768px) {
    .page_title {
        font-size: 50px;
    }
    .page_short_title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .page_title {
        font-size: 40px;
    }
    .page_short_title {
        font-size: 22px;
    }
}

p.form-row.form-row-first, p.form-row.form-row-last {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}

input#orderid ,
input#order_email{
    width: 20%;
    padding: 8px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-align: center;
    color: #4B5563;
}



body > main > div > form > p:nth-child(6) > button:hover {
    background: linear-gradient(135deg, #abc1d7, #004a99);
    transform: scale(1.1);
}
body > main > div > form > p:nth-child(6) > button    {
    width: 240px;
    margin-top: 20px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #fafafa;
    font-size: 16px;
    font-weight: 550;
    background: linear-gradient(135deg, #abc1d7, #004a99);
    transition: transform 1s ease, color 1s ease, filter 1s ease !important;
}

h2.page_title {
    margin: 0px 0px 0px 0px;
}