* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", "Inter", Arial, sans-serif;
    background: #f6f8fb;
    color: #071b3a;
}

/* PAGE */
.register-page {
    min-height: 100vh;
    padding: 16px;
}

/* HEADER */
.register-header {
    max-width: 1180px;
    margin: 0 auto;
    background: #001a3d;
    border-radius: 14px;
    padding: 22px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 35px rgba(0, 26, 61, 0.18);
}

.register-logo {
    text-decoration: none;
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.register-logo span {
    color: #ff9900;
    font-style: italic;
}

.register-logo small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #fff;
}

.back-home {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.9;
}

.back-home:hover {
    color: #ff9900;
}

/* WRAPPER */
.register-wrapper {
    max-width: 1180px;
    margin: 34px auto;
    display: flex;
    justify-content: center;
}

/* CARD */
.register-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 16px 45px rgba(7, 27, 58, 0.09);
    border: 1px solid #edf1f6;
}

.register-title {
    margin-bottom: 28px;
    text-align: center;
}

.register-title h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.7px;
    color: #071b3a;
}

.register-title p {
    margin: 10px 0 0;
    color: #6b7280;
    font-size: 15px;
}

/* FORM */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
    color: #071b3a;
}

.form-field input {
    height: 52px;
    border: 1px solid #e1e7ef;
    background: #fbfcfe;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 600;
    color: #071b3a;
    outline: none;
    transition: 0.2s ease;
}

.form-field input::placeholder {
    color: #9aa5b5;
    font-weight: 500;
}

.form-field input:focus {
    border-color: #ff9900;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.12);
}

/* AGREEMENT */
.agreement {
    margin: 22px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #5f6b7a;
    line-height: 1.5;
}

.agreement input {
    margin-top: 3px;
    accent-color: #ff9900;
}

/* BUTTON */
#registerBtn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 13px;
    background: #ff9900;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(255, 153, 0, 0.28);
    transition: 0.2s ease;
}

#registerBtn:hover {
    background: #f08f00;
    transform: translateY(-1px);
}

#registerBtn:active {
    transform: translateY(0);
}

/* LOGIN LINK */
.login-link {
    margin: 22px 0 0;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.login-link a {
    color: #ff9900;
    font-weight: 900;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

/* OPTIONAL INFO BOX */
.register-note {
    margin-top: 22px;
    padding: 14px 16px;
    border-radius: 13px;
    background: #f7f9fc;
    border: 1px solid #e9eef5;
    color: #5f6b7a;
    font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .register-page {
        padding: 10px;
    }

    .register-header {
        padding: 18px 20px;
        border-radius: 12px;
    }

    .register-logo {
        font-size: 30px;
    }

    .back-home {
        font-size: 12px;
    }

    .register-wrapper {
        margin: 22px auto;
    }

    .register-card {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .register-title h1 {
        font-size: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}
html, body, button, input, select, textarea {
    font-family: "Segoe UI", "Noto Sans", Arial, sans-serif !important;
}
