:root {
    --primary: #DA9C34;
    --primary-dark: #b88428;
    --dark: #1f3d36;
    --bg: #f9f6f1;
}

.auth-wrapper {
    min-height: 100vh;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.auth-logo {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.auth-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.auth-group {
    margin-bottom: 18px;
}

.auth-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.auth-group input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.auth-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.auth-btn {
    width: 100%;
    padding: 13px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.auth-btn:hover {
    background: var(--primary-dark);
}

.auth-links {
    text-align: center;
    margin-top: 15px;
}

.auth-links a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.error-text {
    color: red;
    font-size: 13px;
    margin-top: 4px;
}

/* Style select dropdown same as input */
.auth-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Focus state */
.auth-group select:focus {
    border-color: var(--primary);
    outline: none;
}

/* Disabled select */
.auth-group select:disabled {
    background-color: #f2f2f2;
    cursor: not-allowed;
}

