body {
    background-color:#4B0082;
    font-family: Arial, sans-serif;
    text-align: center;
}

button {
    background-color:#000000;
    color: #fff; 
    border: none;
    border-radius: 25px; 
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

button:hover {
    background-color: #333; 
}


#formUserRegistration {
    background:#B0E0E6;
    width: 320px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    margin: auto;
    margin-top: 50px;
}

label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 5px;
}

input[type="submit"] {
    background-color: #000; /* Black button */
    color: #fff; /* White text */
    border: none;
    border-radius: 50px; /* Makes it oval */
    padding: 12px 40px; /* Adjust width */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
}

input[type="submit"]:hover {
    background-color: #333; /* Slightly lighter on hover */
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Highlight effect */
}



h1 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 20px;
}
