* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", "Inter", Arial, sans-serif;
    background: #f6f8fb;
    color: #071b3a;
}

.login-page {
    min-height: 100vh;
    padding: 16px;
}

.login-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);
}

.login-logo {
    text-decoration: none;
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.login-logo span {
    color: #ff9900;
    font-style: italic;
}

.login-logo small {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #fff;
}

.header-register-btn {
    text-decoration: none;
    background: #ff9900;
    color: #fff;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
}

.login-wrapper {
    max-width: 1180px;
    margin: 34px auto;
    display: flex;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 16px 45px rgba(7, 27, 58, 0.09);
    border: 1px solid #edf1f6;
}

.login-title {
    text-align: center;
    margin-bottom: 28px;
}

.login-title h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
}

.login-title p {
    margin: 10px 0 0;
    color: #6b7280;
    font-size: 15px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
}

.form-field input {
    width: 100%;
    height: 52px;
    border: 1px solid #e1e7ef;
    background: #fbfcfe;
    border-radius: 12px;
    padding: 0 15px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}

.form-field input:focus {
    border-color: #ff9900;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 153, 0, 0.12);
}

#loginBtn {
    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);
}

.register-link {
    margin-top: 22px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}

.register-link a {
    color: #ff9900;
    font-weight: 900;
    text-decoration: none;
}
html, body, button, input, select, textarea {
    font-family: "Segoe UI", "Noto Sans", Arial, sans-serif !important;
}
