* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
}

.page {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}


/* ==============================
   BACKGROUND IMAGE
   ============================== */

.background-area {
    width: 100%;
    height: auto;
    position: relative;
    overflow: visible;
    background: #ffffff;
}

.background-area img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: top center;
}


/* ==============================
   VERIFICATION BOX
   ============================== */

.verify-card {
    position: absolute;
    z-index: 20;

    top: 378px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 40px);
    max-width: 650px;

    padding: 45px 40px;

    background: #ffffff;

    border-radius: 8px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.verify-card form {
    width: 100%;
}

.verify-card input {
    display: block;

    width: 100%;
    height: 58px;

    padding: 0 20px;

    border: 1px solid #eeeeee;

    background: #f8f8f8;

    font-size: 16px;
    color: #555555;

    outline: none;
}

.verify-card input::placeholder {
    color: #555555;
    opacity: 1;
}


/* ==============================
   VERIFY BUTTON
   ============================== */

.verify-card button {
    display: block;

    margin-top: 24px;

    width: 147px;
    height: 59px;

    border: none;
    border-radius: 30px;

    background: #08699c;

    color: #ffffff;

    font-size: 16.5px;
    font-weight: 620;

    cursor: pointer;
}

.verify-card button:hover {
    background: #08699c;
}


/* ==============================
   FLOATING BACK TO TOP BUTTON
   ============================== */

#backToTop {
    position: fixed;

    right: 18px;
    bottom: 18px;

    width: 50px;
    height: 50px;

    margin: 0;
    padding: 0;

    border: none;
    border-radius: 8px;

    background: #08699c;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 99999;
}


/* ==============================
   ARROW
   ============================== */

#backToTop span {
    display: block;

    width: 9px;
    height: 9px;

    border-left: 2px solid #ffffff;
    border-top: 2px solid #ffffff;

    transform: rotate(45deg);

    position: relative;
    top: 3px;

    font-size: 0;
}


/* ==============================
   HOVER
   ============================== */

#backToTop:hover {
    background: #08699c;
}


/* ==============================
   MOBILE VERIFICATION TITLE
   ============================== */

@media (max-width: 768px) {

    .verification-title {
        font-size: 48px !important;
    }

}
/* ==============================
   TOP RIGHT MENU BUTTON
   ============================== */

.top-menu-button {
    position: absolute;
    top: 25px;
    right: 25px;

    width: 34px;
    height: 30px;

    z-index: 99999;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;

    gap: 7px;
}

.top-menu-button span {
    display: block;

    height: 2px;

    background: #1f7896;

    transition: width 0.25s ease;
}

/* Page open:
   upar wali line aadhi
   neeche wali line full
*/

.top-menu-button span:first-child {
    width: 11px;
}

.top-menu-button span:last-child {
    width: 25px;
}

/* Click ke baad:
   dono lines full aur equal
*/

.top-menu-button.active span:first-child,
.top-menu-button.active span:last-child {
    width: 20px;
}
/* ==============================
   EMAIL POSITION
   ============================== */

.email-item {
    position: relative !important;
    top: -27px !important;
}
/* ==============================
   LOCATION POSITION
   ============================== */

.contact-section > .contact-item:last-child {
    position: relative;
    top: -25px;
}
