/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
    color: #222;
}


/* ================= HEADER ================= */

.site-header {
    width: 100%;
    height: 70px;

    background: #ffffff;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 0 30px;

    border-bottom: 1px solid #e5e5e5;

    position: relative;
}


/* ================= LEFT ================= */

.nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    text-decoration: none;

    color: #111;

    font-size: 25px;
    font-weight: 800;

    letter-spacing: 1px;
}


/* ================= CENTER SEARCH ================= */

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-form {
    width: 420px;
    height: 42px;

    display: flex;
    align-items: center;

    border: 1px solid #d8d8d8;

    border-radius: 22px;

    overflow: hidden;

    background: #f8f8f8;
}

.search-form input {
    flex: 1;

    height: 100%;

    border: none !important;

    outline: none;

    background: transparent;

    padding: 0 16px !important;

    margin: 0 !important;

    font-size: 14px;

    color: #777;
}

.search-form input::placeholder {
    color: #999;
}

.search-form button {
    width: 48px;
    height: 100%;

    border: none;

    background: transparent;

    color: #555;

    cursor: default;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ================= RIGHT ================= */

.nav-right {
    display: flex;

    justify-content: flex-end;

    align-items: center;
}

.menu-btn {
    border: none;

    background: transparent;

    font-size: 25px;

    color: #222;

    cursor: pointer;
}


/* ================= REGISTER CONTAINER ================= */

.register-container {
    min-height: calc(100vh - 70px);

    display: flex;

    justify-content: center;

    align-items: flex-start;

    padding: 40px 20px;
}


/* ================= REGISTER CARD ================= */

.register-card {
    width: 100%;

    max-width: 500px;

    background: #ffffff;

    padding: 35px;

    border-radius: 14px;

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}


/* ================= HEADING ================= */

.register-card h2 {
    text-align: center;

    font-size: 26px;

    margin-bottom: 10px;

    color: #111;
}

.register-card > p {
    text-align: center;

    color: #777;

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 25px;
}


/* ================= FORM ================= */

.register-card form {
    width: 100%;
}

.register-card label {
    display: block;

    font-size: 14px;

    font-weight: 600;

    color: #333;

    margin-bottom: 7px;
}

.register-card input,
.register-card select {
    width: 100%;

    height: 48px;

    padding: 0 14px;

    margin-bottom: 18px;

    border: 1px solid #d8d8d8;

    border-radius: 8px;

    background: #ffffff;

    font-size: 14px;

    color: #222;

    outline: none;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.register-card input:focus,
.register-card select:focus {
    border-color: #111;

    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.register-card input::placeholder {
    color: #999;
}


/* ================= BUTTON ================= */

.register-btn {
    width: 100%;

    height: 50px;

    border: none;

    border-radius: 8px;

    background: #111;

    color: #ffffff;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    transition: 0.2s ease;
}

.register-btn:hover {
    background: #333;
}

.register-btn:active {
    transform: scale(0.98);
}


/* ================= FLASH MESSAGE ================= */

.flash-message {
    padding: 12px 15px;

    margin-bottom: 18px;

    border-radius: 7px;

    font-size: 14px;
}

.flash-message.success {
    background: #e8f7ee;

    color: #187a3d;
}

.flash-message.error,
.flash-message.danger {
    background: #fdeaea;

    color: #b42318;
}

.flash-message.warning {
    background: #fff4d6;

    color: #8a5a00;
}

.flash-message.info {
    background: #e8f1ff;

    color: #175cd3;
}


/* ================= DIVIDER ================= */

.divider {
    display: flex;

    align-items: center;

    gap: 15px;

    margin: 25px 0;
}

.divider::before,
.divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #ddd;
}

.divider span {
    color: #888;

    font-size: 14px;

    font-weight: 600;
}

/* ================= BUSINESS INFORMATION ================= */

.business-section {
    margin-top: 8px;

    padding-top: 20px;

    border-top: 1px solid #e5e5e5;
}


/* ================= BUSINESS HEADING ================= */

.business-heading {
    margin-bottom: 20px;
}

.business-heading h3 {
    font-size: 19px;

    color: #111;

    margin-bottom: 7px;
}

.business-heading p {
    color: #777;

    font-size: 13px;

    line-height: 1.5;

    margin: 0;
}


/* ================= BUSINESS TEXTAREA ================= */

.register-card textarea {
    width: 100%;

    min-height: 110px;

    padding: 12px 14px;

    margin-bottom: 18px;

    border: 1px solid #d8d8d8;

    border-radius: 8px;

    background: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    color: #222;

    outline: none;

    resize: vertical;

    transition: border-color 0.2s ease,
                box-shadow 0.2s ease;
}

.register-card textarea:focus {
    border-color: #111;

    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.register-card textarea::placeholder {
    color: #999;
}


/* ================= OPTIONAL TEXT ================= */

.register-card label span {
    font-size: 12px;

    font-weight: 400;

    color: #888;
}


/* ================= VERIFICATION NOTICE ================= */

.verification-notice {
    display: flex;

    gap: 12px;

    padding: 15px;

    margin-top: 3px;

    margin-bottom: 22px;

    border: 1px solid #e2e2e2;

    border-radius: 8px;

    background: #f8f9fa;
}

.verification-notice > i {
    flex-shrink: 0;

    font-size: 20px;

    color: #333;

    margin-top: 2px;
}

.verification-notice strong {
    display: block;

    margin-bottom: 6px;

    font-size: 14px;

    color: #222;
}

.verification-notice p {
    margin: 0 0 6px 0;

    font-size: 12px;

    line-height: 1.5;

    color: #666;
}

.verification-notice p:last-child {
    margin-bottom: 0;
}


/* ================= BUSINESS MOBILE ================= */

@media (max-width: 700px) {

    .business-section {
        padding-top: 18px;
    }

    .business-heading h3 {
        font-size: 18px;
    }

    .business-heading p {
        font-size: 13px;
    }

    .verification-notice {
        padding: 13px;

        gap: 10px;
    }

    .verification-notice > i {
        font-size: 18px;
    }

    .verification-notice p {
        font-size: 12px;
    }

}



/* ================= GOOGLE ================= */

.google-btn {
    width: 100%;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 1px solid #ddd;

    border-radius: 8px;

    background: #ffffff;

    color: #333;

    font-size: 15px;

    font-weight: 600;

    cursor: pointer;

    text-decoration: none;

    transition: 0.2s ease;
}

.google-btn:hover {
    background: #f5f5f5;

    border-color: #bbb;

    text-decoration: none;
}

.google-btn:visited {
    color: #333;
}

.google-btn i {
    color: #db4437;

    font-size: 18px;
}


/* ================= LOGIN LINK ================= */

.login-link {
    text-align: center;

    margin-top: 25px;

    margin-bottom: 0;

    color: #777;

    font-size: 14px;
}

.login-link a {
    color: #007bff;

    text-decoration: none;

    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}


/* ================= MOBILE ================= */

@media (max-width: 700px) {

    .site-header {
        height: 62px;

        grid-template-columns: 1fr auto;

        padding: 0 18px;
    }

    .nav-center {
        display: none;
    }

    .logo {
        font-size: 22px;
    }

    .menu-btn {
        font-size: 22px;
    }

    .register-container {
        min-height: calc(100vh - 62px);

        padding: 25px 15px;
    }

    .register-card {
        padding: 28px 20px;

        border-radius: 12px;
    }

    .register-card h2 {
        font-size: 22px;
    }

    .google-btn,
    .register-btn {
        height: 48px;
    }
}