@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');

body {
	margin: 0;
	background: linear-gradient(340deg, #787878, #d1d1d1);
	font-family: 'Roboto', sans-serif;
}
body, html {
	min-height: 100vh;
}

.modal {
 max-width: 800px;
 text-align: center;
}

.modal a {
	text-decoration: none;
	color: #000;
}
.modal label {
	margin: -15px 0 30px 0;
	text-align: center;
	display: block;
}

input {
	width: 100%;
	border: none;
	background: #f2f2f2;
	padding: 6px;
	text-align: center;
	font-size: 1rem;
}
input:focus {
	outline: none;
}

.center {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

.button {
	background-color: #0079c5; /* Green */
	border: none;
	color: white !important;
	padding: 10px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	border-radius: 3px;
	margin-top: 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.phone {
	width: 420px;
	height: 892px;
	margin: -15px auto 0 auto;
	background: transparent url(../Imgs/iphone-clean.png) center center no-repeat;
	background-size: contain;
	position: relative;
	filter: drop-shadow(12px 24px 6px rgba(0,0,0,0.4));
	transform-origin: center top;
	backface-visibility: hidden;
}

.phone .inner {
	position: absolute;
	background: #000;
	top: 61px; left: 21px; bottom: 63px; right: 20px;
	border-radius: 35px;
	overflow: hidden;
}

.phone iframe {
	border: none;
	width: calc(100% + 15px);
	top: 0px;
	height: 100%;
	position: absolute;
}

@media (max-height: 900px) {
	.phone {
		transform: scale(.9);
	}
}

@media (max-height: 800px) {
	.phone {
		transform: scale(.8);
	}
}