.login-wrapper {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}
.login-card {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.login-card h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 6px;
    text-align: center;
}
.login-sub {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-bottom: 24px;
}
.tab-row {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: #f5f5f5;
    border-radius: 8px;
    padding: 4px;
}
.tab {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 6px;
    background: transparent;
    font-size: 13px;
    cursor: pointer;
    color: #666;
    font-weight: 500;
}
.tab.active {
    background: white;
    color: #1b5e20;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}
.form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}
.form-group input:focus {
    outline: none;
    border-color: #1b5e20;
}
.btn-submit {
    width: 100%;
    padding: 13px;
    background: #1b5e20;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 4px;
}
.btn-submit:hover { background: #154a19; }
.message {
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    display: none;
}
.message.success { background: #e8f5e9; color: #2e7d32; display: block; }
.message.error { background: #f1f8e9; color: #1b5e20; display: block; }