
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box!important;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}


.web-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}


.top-banner-container {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: auto; 
    border-bottom: 1px solid #f0e6d2;
}


.banner-clip {
    width: 100%;
    max-width: 1200px;
    height: 100%; 

    display: flex;
    justify-content: center;
    align-items: center;

}

.top-banner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.bottom-form-container {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.register-box {
    width: 100%;
    max-width: 760px; 
}


.register-title {
    font-size: 26px;
    color: #e5a93b; 
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.mascot-container {
    text-align: center;
    margin-bottom: 15px;
}

.mini-mascot {
    height: 95px;
    width: auto;
    object-fit: contain;
}

.social-text {
    text-align: center;
    color: #666666;
    font-size: 14px;
    margin-bottom: 15px;
}


.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background-color: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-social:hover {
    background-color: #f9f9f9;
    border-color: #cccccc;
}

.btn-social img {
    width: 18px;
    height: 18px;
}


.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #eeeeee;
    z-index: 1;
}

.divider span {
    background-color: #ffffff;
    padding: 0 15px;
    color: #777777;
    font-size: 14px;
    position: relative;
    z-index: 2;
}


.section-heading {
    font-size: 15px;
    color: #111111;
    font-weight: 700;
    margin: 30px 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-left: 3px solid #e5a93b;
    padding-left: 8px;
}


.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-row .input-group {
    flex: 1;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #222222;
    margin-bottom: 8px;
    font-weight: 700;
}

.input-group label .optional {
    color: #888888;
    font-weight: 400;
    font-size: 12px;
}


.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    background-color: #ffffff;
    color: #333333;
    transition: all 0.2s ease;
}

.input-group input:focus {
    border-color: #e5a93b;
    box-shadow: 0 0 4px rgba(229, 169, 59, 0.2);
}

.input-note {
    display: block;
    font-size: 12px;
    color: #777777;
    margin-top: 6px;
    line-height: 1.4;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #888888;
}


.vat-notice {
    font-size: 13px;
    color: #666666;
    margin: -5px 0 15px 0;
}

.text-green {
    color: #107c41;
    font-weight: bold;
    margin-right: 3px;
}


.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #222222;
    margin: 20px 0 15px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e5a93b;
    cursor: pointer;
}

.policy-text {
    font-size: 14px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 35px;
}

.text-gold-link {
    color: #e5a93b;
    text-decoration: none;
    font-weight: 500;
}

.text-gold-link:hover {
    text-decoration: underline;
}


.action-buttons {
    display: flex;
    gap: 20px;
    border-top: 1px dashed #e0e0e0;
    padding-top: 25px;
}

.btn-back {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background-color: #f9f9f9;
    border-color: #cccccc;
}

.btn-submit {
    flex: 1;
    padding: 14px;
    background-color: #e5a93b;
    color: #ffffff;
    border: 1px solid #e5a93b;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background-color: #d4982a;
    border-color: #d4982a;
}
.error-msg {
    color: #ff3333;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}


@media (max-width: 768px) {
    .top-banner-container {
        height: 240px;
    }
    .banner-clip {
        margin-top: 5%;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .action-buttons {
        flex-direction: column-reverse;
        gap: 12px;
    }
}