h2 {
    margin-bottom: 10px;
}

form {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    gap: 10px;
}

button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    padding-inline: 15px;
    width: fit-content;
    border-radius: 8px;
    background-color: black;
    color: white;
    margin-top: 10px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

button:hover {
    gap: 15px;
    transition: 0.3s;
}

button::placeholder {
    margin-left: 10px;
}