html {
    background: darkgrey;
    height: 100lvh;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    overscroll-behavior: none;
}

body {
    width: 90%;
    max-height: calc(100dvh - 48px);
    max-width: 400px;
    background: lightgray;
    padding: 20px;
    margin: 4px 6px;
    border-radius: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    align-content: center;
    transition: height 0.25s ease;
    overflow: hidden;
    overscroll-behavior: none;
}

header {
    display: flex;
    justify-content: center;
}

header img {
    width: 75%;
    height: auto;
    margin-bottom: 20px;
}

main {
    display: flex;
    justify-content: center;
}

main form {
    display: flex;
    flex-direction: column;
    width: 85%;
}

form input {
    width: 100%;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #646464;
    margin: 2px 0;
}

form input:focus {
    outline: 2px solid #5C0029;
}

form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: #FEB200;
    color: #646464;
    font-size: 14px;
    margin: 4px 0;
    -webkit-tap-highlight-color: transparent;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
}

form button:hover {
    background: #f2aa00;
    transform: scale(0.98);
    transition: 0.2s ease-in-out;
}