* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body {
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.container {
    background-color: white;
    padding: 30px;
    display: grid;
    gap: 40px;
    border-radius: 10px;
    border: 5px solid blueviolet;
    box-shadow: 0px 0px 20px #000;
}
.container h2 {
    text-align: center;
    font-size: 26px;
    color: blueviolet;
    font-family: sans-serif;
}
input {
    padding: 20px;
    user-select: none;
    height: 50px;
    border-radius: 5px;
    border: 2px solid blueviolet;
    outline: none;
    font-size: 20px;
}
input::placeholder {
    font-size: 20px;
}
.buttons {
    display: flex;
    justify-content: space-between;
}
.button {
    font-size: x-large;
    font-weight: bolder;
    padding: 13px 50px;
    margin-left: 5px;
    margin-right: 5px;
    border: 2px solid black;
    background-color: blueviolet;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}
.button:hover {
    color: white;
    background-color: blue;
}