body {
    background-color: #1B3C61;
    color: #fff;
    font-family: "Cabin", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
    box-sizing: border-box;
    width: 100vw;
    height: 100vh;
    max-width: 600px;
    margin-inline: auto;
}


form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    row-gap: 16px;
}


input {
    padding: 8px 16px;
    border-radius: 18px;
    width: 100%;
    border: none;
    max-width: 400px;
}

button {
    background-color: #F5B841;
    color: #333333;
    padding: 4px 12px;
    font-weight: 550;
    border-radius: 38px;
    border: none
}

button:hover {
    cursor: pointer;
    opacity: 80%;
}

li, h1 {
    margin:0;
}