body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f2f2;
    color: #222;
}

.gs-header {
    background: #111;
    color: #fff;
    padding: 16px 20px;
    border-bottom: 5px solid #ff8200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gs-brand {
    color: #fff;
    text-decoration: none;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: .5px;
}

.gs-brand span {
    color: #ff8200;
}

.gs-card {
    margin-top: 20px;
    padding: 22px;
    border-left: 6px solid #ff8200;
    background: #fafafa;
    border-radius: 8px;
}

.gs-button {
    display: inline-block;
    margin-top: 10px;
    padding: 11px 18px;
    background: #ff8200;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
}

.gs-button:hover {
    background: #e67300;
}

.gs-nav {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.gs-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.gs-nav a:hover {
    color: #ff8200;
}

.gs-form-page {
    max-width: 520px;
}

.gs-form-page h1 {
    margin-top: 0;
}

.gs-form-page label {
    display: block;
    margin-top: 14px;
    font-weight: bold;
}

.gs-form-page input {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.gs-password-wrapper {
    position: relative;
}

.gs-password-wrapper input {
    padding-right: 48px;
}

.gs-toggle-password {
    position: absolute;
    right: 12px;
    top: 6px;
    bottom: 0;
    width: 30px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 20px;
}

.gs-toggle-password:hover {
    color: #ff8200;
}

.gs-submit-button {
    margin-top: 20px;
    width: 100%;
    padding: 13px;
    font-size: 18px;
    font-weight: bold;
    background: #ff8200;
    color: #fff;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.gs-submit-button:hover {
    background: #e67300;
}

.gs-error {
    background: #ffe6e6;
    color: #900;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.gs-note {
    font-size: 13px;
    color: #666;
    margin-top: 6px;
}

.gs-small {
    margin-top: 18px;
    text-align: center;
}

.gs-page {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 18px rgba(0,0,0,.12);
}

.gs-footer {
    margin-top: 40px;
    padding: 24px 20px;
    background: #111;
    color: #fff;
    text-align: center;
}

.gs-footer a {
    color: #ff8200;
    text-decoration: none;
    margin: 0 8px;
}

.gs-footer-links {
    margin-top: 8px;
}

@media (max-width: 700px) {
    .gs-header {
        flex-direction: column;
        text-align: center;
    }

    .gs-brand {
        font-size: 28px;
    }

    .gs-nav {
        justify-content: center;
    }
}