body {
    background: url('../images/1600w-bVG65uJJ1c8.webp') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.register-container {
    background: white;
    width: 680px; 
    height: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input.error {
    border-color: red;
}

button {
    background: #6eb5f1;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

button:disabled {
    background: #6eb5f1;
}

button:enabled {
    background: #5a9be6;
}

label {
    display: flex;
    justify-content: center;      
}

.success {
    color: green;
}

.error {
    color: red;
}

.validation-error {
    color: red;
    font-size: 12px;
    display: none;
}
