html {
    box-sizing: border-box;
    font-size: 16px;
}
*, *:before, *:after {
    box-sizing: inherit;
}

html {
    width: 100%;
    height: 100vh;
    font-family: arial, sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 100%;
    background-color: #1b1b1b;
	margin: 0;
}
input {
    all: unset;
    box-sizing: border-box;
    border-radius: 2px;
    padding: 0 10px;
    height: 35px;
    font-size: 15px;
    line-height: 1;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}
input:focus {
    box-shadow: 0 0 2px 2px rgba(250, 197, 140, 0.75);
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 90%
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    width: 400px;
    border-radius: 5px;
    padding: 2rem;
    background-color: white;
}
.card > h3 {
    text-align: center;
    font-size: 1.25rem;
    padding: 0 0 .25rem 0;
	margin: 0;
    font-weight: 500;
}

button {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    padding: 0 10px;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    height: 35px;
    cursor: pointer;
}
button:disabled {
    opacity: .65;
    pointer-events: none;
}
button:active {
    box-shadow: 0 0 2px 2px rgba(250, 197, 140, 0.75);
}

input, label {
    display: block;
    width: 100%;
}

#copyright {
	font-size: .875em;
	color: #777;
}

#error {
	display: none;
	color: red;
	text-align: center;
}