body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.auth-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.auth-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    width: 360px;
    max-width: 90%;
    border: 1px solid #b38b2e66;
    text-align: center;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

h2 {
    color: #e3c977;
    margin-bottom: 15px;
}

.consolidated-notice {
    background-color: #1a1a1a;
    border: 1px solid #b38b2e;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 12px;
    text-align: left;
    max-height: 100px;
    overflow-y: auto;
}

.consolidated-notice p {
    margin: 0 0 6px 0;
    font-size: 0.8rem;
    color: #e3c977;
    line-height: 1.3;
}

.consolidated-notice p:last-child {
    margin-bottom: 0;
}

.consolidated-notice strong {
    color: #fff;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    background: #111;
    border: none;
    border-radius: 6px;
    color: white;
    box-sizing: border-box;
    font-size: 14px;
}

.input-group {
    width: 100%;
    margin-top: 10px;
}

.field-hint {
    display: block;
    color: #b38b2e;
    font-size: 0.75rem;
    margin-top: 4px;
    text-align: left;
    opacity: 0.8;
}

.password-group {
    position: relative;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    padding-right: 45px;
    margin-top: 0;
}

.toggle-password {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    color: #b38b2e;
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border-radius: 4px;
    transition: background 0.2s;
}

.toggle-password:hover {
    background: rgba(179, 139, 46, 0.1);
}

.password-match-indicator {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    text-align: left;
    min-height: 16px;
}

.password-match-indicator.match {
    color: #4caf50;
}

.password-match-indicator.no-match {
    color: #ff5555;
}

button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: #b38b2e;
    border: none;
    border-radius: 6px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #e4b847;
}

#errorMsg {
    color: #ff5555;
    margin-top: 10px;
    font-size: 14px;
}

.switch-text {
    margin-top: 20px;
}

.switch-text a {
    color: #e3c977;
    text-decoration: none;
    font-weight: bold;
}

.bank-info-section {
    width: 100%;
    margin-top: 8px;
}

.bank-info-section input {
    margin-top: 8px;
}

#registerBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}