/* Style the form container */
#registration-form, #registration-result, #custom-login-form  {
    max-width: 400px;
    margin: 0 auto;
}

/* Style form groups (labels and inputs) */
.form-group {
    margin-bottom: 15px;
}

/* Style labels */
label {
    display: block;
    margin-bottom: 5px;
}

/* Style text inputs */
input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

/* Style submit button */
button {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #005bb5;
}

/* Style error messages */
.error {
    color: #ff0000;
    margin-bottom: 15px;
}

/* Style success messages */
.success {
    color: #008000;
    margin-bottom: 15px;
}
