button{
    text-decoration: none;
    color: inherit;
    padding: 15px;
    background-color: blueviolet;
    border-radius: 20px;
    display: inline-block;
    overflow: hidden;
    margin-right: 200px;
    font-size: 15px;
    font-weight: bold;
    align-items: center;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

input {
    display: block;
    padding: 10px;
  
}
label {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    
}

button:hover {
    background-color: darkviolet;
    color: white;
    transform: scale(1.1);
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}