* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f7f8;
    color: #20252b;
}


/* TOP HEADER */

header {
    background: #222;
    color: white;
    padding: 30px 5%;
}

.top-location {
    display: flex;
    align-items: center;
    gap: 7px;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 25px;
}

.top-location i {
    font-size: 16px;
}

.socials {
    display: flex;
    gap: 35px;
    color: #20c978;
    font-size: 28px;
}


/* BRAND */

.brand {
    margin: 45px auto;
    width: 92%;
    background: #20c978;
    color: white;

    padding: 55px 40px;

    border-radius: 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    font-size: 45px;
}

.menu {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.15);

    color: white;

    font-size: 40px;

    padding: 10px 25px;

    border-radius: 10px;
}


/* MAIN */

main {
    width: 92%;
    margin: auto;
}


/* CARD */

.verification-card {
    background: white;

    padding: 70px;

    border-radius: 25px;

    margin-bottom: 100px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.verification-card h2 {
    font-size: 55px;
    margin-bottom: 40px;
}

.verification-card > p {
    color: #737b83;
    font-size: 28px;
    line-height: 1.8;
    margin-bottom: 50px;
}


/* INPUT */

.input-box {
    display: flex;

    border: 2px solid #d5dbe0;

    height: 95px;

    margin-bottom: 40px;
}

.prefix {
    width: 170px;

    background: #e9edf1;

    display: flex;
    align-items: center;

    padding-left: 30px;

    font-size: 30px;

    color: #555e66;
}

.input-box input {
    flex: 1;

    border: none;

    outline: none;

    font-size: 30px;

    padding: 20px;
}


/* VERIFY */

.verify-btn {
    width: 100%;

    height: 100px;

    border: none;

    border-radius: 10px;

    background: #20c978;

    color: white;

    font-size: 32px;

    font-weight: bold;

    cursor: pointer;
}

.verify-btn:hover {
    background: #18b86c;
}


/* SUCCESS */

.success {
    color: #176b2d;

    font-size: 28px;

    margin: 35px 0;
}


/* DETAILS TABLE */

.details-table {
    width: 100%;

    border-collapse: collapse;

    margin-top: 30px;

    font-size: 23px;
}

.details-table th {
    background: #e9edf1;

    color: #4e5660;

    padding: 25px;

    text-align: left;
}

.details-table td {
    border: 1px solid #d8dde2;

    padding: 25px;
}


/* FOOTER */

footer {
    background: #202020;

    color: #aaa;

    padding: 70px 5%;

    min-height: 500px;
}

footer h2 {
    color: white;

    font-size: 45px;

    margin-bottom: 35px;
}

footer h3 {
    color: white;

    font-size: 32px;

    margin-top: 50px;

    margin-bottom: 25px;
}

footer p {
    font-size: 22px;

    line-height: 2;
}

.copyright {
    margin-top: 80px;

    text-align: center;

    font-size: 20px;
}

.copyright span {
    color: #20c978;
}


/* MOBILE */

@media (max-width: 600px) {

    /* HEADER */

    header {
        padding: 28px 32px;
    }

    .top-location {
        font-size: 17px;
        margin-bottom: 25px;
    }

    .socials {
        gap: 28px;
    }

    .socials a {
        font-size: 27px;
    }


    /* BRAND */

    .brand {
        width: calc(100% - 64px);

        margin: 40px auto 70px;

        padding: 30px 24px;

        min-height: 140px;

        border-radius: 12px;
    }

    .brand h1 {
        font-size: 32px;
    }

    .menu {
        width: 70px;
        height: 70px;

        font-size: 30px;

        padding: 0;
    }


    /* MAIN */

    main {
        width: calc(100% - 64px);
    }


    /* VERIFICATION CARD */

    .verification-card {
        width: 100%;

        padding: 30px 24px;

        border-radius: 25px;

        margin-bottom: 100px;
    }

    .verification-card h2 {
        font-size: 36px;

        line-height: 1.25;

        margin-bottom: 35px;
    }

    .verification-card > p {
        font-size: 18px;

        line-height: 1.7;

        margin-bottom: 35px;
    }


    /* INPUT */

    .input-box {
        width: 100%;

        height: 70px;

        margin-bottom: 25px;
    }

    .prefix {
        width: 85px;

        padding-left: 12px;

        font-size: 20px;
    }

    .input-box input {
        min-width: 0;

        font-size: 20px;

        padding: 12px;
    }


    /* VERIFY BUTTON */

    .verify-btn {
        width: 100%;

        height: 75px;

        font-size: 25px;

        border-radius: 10px;
    }


    /* SUCCESS MESSAGE */

    .success {
        font-size: 20px;

        margin: 28px 0 20px;
    }


    /* RESULT TABLE */

    .details-table {
        width: 100%;

        table-layout: fixed;

        border-collapse: collapse;

        margin-top: 20px;

        font-size: 14px;
    }

    .details-table th {
        padding: 12px 8px;

        font-size: 14px;

        line-height: 1.3;

        word-break: normal;
    }

    .details-table td {
        padding: 12px 8px;

        font-size: 14px;

        line-height: 1.4;

        word-break: normal;

        overflow-wrap: anywhere;
    }


    /* FOOTER */

    footer {
        padding: 50px 32px 35px;

        min-height: auto;
    }

    footer h2 {
        font-size: 32px;

        margin-bottom: 30px;
    }

    footer h3 {
        font-size: 25px;

        margin-top: 40px;

        margin-bottom: 20px;
    }

    footer p {
        font-size: 17px;

        line-height: 1.8;
    }

  .footer-socials {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px !important;
    margin-top: 20px !important;
}

.footer-socials a {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;

    color: #999999 !important;
    text-decoration: none !important;

    font-size: 20px !important;
}

.footer-socials i {
    width: 30px !important;
    font-size: 27px !important;
    text-align: center !important;
}

.footer-socials a:hover {
    color: #20c978 !important;
}

/* TOP SOCIAL ICONS */

.socials a {
    color: #20c978 !important;
    text-decoration: none !important;
    font-size: 30px;
}

.socials a:visited {
    color: #20c978 !important;
}

.socials a:hover {
    color: white !important;
}
/* MOBILE TABLE SCROLL */

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll .details-table {
    min-width: 750px;
    width: 750px;
    table-layout: auto;
}

.table-scroll .details-table th,
.table-scroll .details-table td {
    white-space: nowrap;
}
/* WHATSAPP DEMO BUTTONS */

.whatsapp-chat,
.whatsapp-group {
    position: fixed;
    z-index: 9999;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: #20c978;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.25);

    cursor: pointer;
}

.whatsapp-chat {
    left: 20px;
    bottom: 25px;
}

.whatsapp-group {
    right: 20px;
    bottom: 25px;
}

.whatsapp-chat i,
.whatsapp-group i {
    font-size: 45px;
}

.group-small {
    position: absolute;

    top: 8px;
    right: 8px;

    font-size: 18px;
    font-weight: bold;
}


/* MOBILE */

@media (max-width: 600px) {

    .whatsapp-chat,
    .whatsapp-group {
        width: 65px;
        height: 65px;
    }

    .whatsapp-chat {
        left: 15px;
        bottom: 20px;
    }

    .whatsapp-group {
        right: 15px;
        bottom: 20px;
    }

    .whatsapp-chat i,
    .whatsapp-group i {
        font-size: 36px;
    }
}
/* WHATSAPP BUTTONS */

.whatsapp-chat,
.whatsapp-group {
    position: fixed;
    width: 64px;
    height: 64px;
    border-radius: 50%;

    background: #20c978;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    z-index: 9999;
}

/* WhatsApp Chat - LEFT BOTTOM */
.whatsapp-chat {
    left: 15px;
    bottom: 25px;
}

/* WhatsApp Group - RIGHT ABOVE */
.whatsapp-group {
    right: 15px;
    bottom: 115px;
}

/* + sign */
.group-small {
    position: absolute;
    top: 8px;
    right: 8px;

    font-size: 15px;
    font-weight: bold;
}
}
