.box {
	font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
    animation: fadeIn 1.5s;
	will-change: transform;
}

.container {
	padding: 30px;
	min-width: 260px;
	max-width: 500px;
	max-height: 100vh;
	border-radius: 4px;
	overflow-y: auto;
	box-sizing: border-box;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding-bottom: 1rem;
}

main {
    text-align: center;
}

footer {
	display: flex;
	justify-content: space-around;
    padding-top: 1.8rem;
}

p {
	margin-top: 1rem;
	margin-bottom: 1rem;
	line-height: 1.5;
	color: rgba(0, 0, 0, .8);
}
p input {
    font-size: 1.2rem;
    border-width: 0 0 1px 0;
    border-color: #10bb5d;
    outline: none;
    padding: 0.8rem 0;
}

button {
	font-size: 1rem;
	padding: 0.7rem 1.5rem;
	background-color: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	border-radius: .25rem;
	border-style: none;
	border-width: 0;
    outline: none;
	cursor: pointer;
	-webkit-appearance: button;
	text-transform: none;
	overflow: visible;
	line-height: 1.15;
	margin: 0;
	will-change: transform;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

button:focus,
button:hover {
	transform: scale(1.1);
}

.primary {
	background-color: #00449e;
	color: #fff;
}

@keyframes fadeIn {
	0% {opacity: 0}
    30% {opacity: 0}
	100% {opacity: 1}
}