body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.register-wrapper {
    max-width: 500px;
    margin: 40px auto;
    padding: 24px 24px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.08);
}

.register-header {
    margin-bottom: 16px;
}

.register-header h2 {
    margin: 0 0 4px;
    font-size: 22px;
}

.register-header p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.lang-switcher {
    text-align: right;
    margin-bottom: 10px;
    font-size: 13px;
}

.lang-switcher a {
    margin-left: 6px;
    text-decoration: none;
    color: #555;
}

.lang-switcher a:hover {
    text-decoration: underline;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-group {
    margin-bottom: 10px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    font-size: 13px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 7px 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 13px;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.btn-primary {
    width: 100%;
    padding: 9px;
    cursor: pointer;
    border-radius: 6px;
    border: none;
    background: #007bff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #0069d9;
}

.alert {
    padding: 8px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 13px;
}

.alert-error {
    background: #ffe6e6;
    border: 1px solid #e0a0a0;
    color: #a11;
}

.alert-success {
    background: #e6ffea;
    border: 1px solid #9ad09f;
    color: #1a7a28;
}

.small-link {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
}

.small-link a {
    text-decoration: none;
    color: #007bff;
}

.small-link a:hover {
    text-decoration: underline;
}
