html, * {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
    font-size: 100%;
}

body {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: #0e131f;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

main {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(-225deg, #292f3d 0%, #111827 100%);
    width: 50%;
    max-width: 420px;
    height: auto;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

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

main .logo img {
    width: 250px;
    height: auto;
    padding: 15px 20px 20px;
}

main form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

main form * {
    margin-top: 12px;
}

main form *:first-child {
    margin-top: 0;
}

main form input {
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #82a0de;
    outline: none;
}

main form input:focus {
    border: 1px solid #60ccff;
}

main form button {
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    background: #585d68;
    color: white;
    border: none;
    outline: none;
    font-size: 0.8rem;
}

main form button:hover {
    background: #FACC15;
    cursor: pointer;
}

main form button:active {
    background: #081d43;
    box-shadow: none;
}

main form h2 {
    color: white;
    font-size: 1.5rem;
}

main form p {
    color: white;
}
