* {
    text-align: center;
}

body {
    font-family: system-ui, sans-serif;
    background-color: #f2f4f8;
    margin: 0;
    padding: 40px;
}

form {
    background-color: #ffffff;
    padding: 24px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

input[type="text"],
input[type="number"],
input[type="password"],
select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.2s;
}

input:focus,
select:focus {
    border-color: #5b9bd5;
    outline: none;
}

button {
    background-color: #5b9bd5;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #4a8ac2;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.error {
    color : red;
}

.success {
    color : green;
}