.register-form {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 600;
    color: #f0c040;
}

label small {
    font-weight: normal;
    font-size: 12px;
    color: #aaa;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background-color: #1e1e1e;
    color: #f0f0f0;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #f0c040;
    background-color: #2a2a2a;
}

.submit-btn {
    padding: 12px;
    background-color: #f0c040;
    border: none;
    color: #000;
    font-weight: bold;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #d4a832;
}

.errors ul {
    margin: 0;
    padding-left: 20px;
}

.success {
    font-weight: 600;
}