@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

body {
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
	overflow: hidden;
}

header {
	box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.25);
}

.title {
	font-size: 17px;
}

#container {
	width: 100%;
	height: calc(100vh - 65px);
}

.password,
.invalid {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #f3f3f3;
}

.password h2 {
	color: #3e6588;
	font-size: 24px;
	font-weight: 600;
}

.password p {
	color: rgba(0, 0, 0, 0.4);
	font-size: 15px;
	font-weight: 600;
}

.invalid {
	font-size: 20px;
	text-align: center;
	color: rgba(0, 0, 0, 0.4);
	font-weight: 600;
}

.pin {
	height: 50px;
	line-height: 50px;
	border: 2px solid #2887af;
	border-radius: 6px;
	width: 200px;
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	color: #2887af;
	margin-bottom: 1rem;
	background-color: #f3f3f3;
}

.pin:focus {
	outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.pin::placeholder {
	color: rgba(0, 0, 0, 0.4);
}

.pin::first-letter {
	margin-left: 16px;
}

.fullscreen {
	background-color: #333;
}

.navbar {
	background-color: #fff;
}

.logo {
	height: 34px;
}

.navbar-toggler-icon {
	height: 30px;
	width: 30px;
}

.links-container {
	margin-left: auto;
}

.link {
	font-weight: 600;
	text-decoration: none;
	color: #2887af;
	padding: 10px;
	font-size: 15px;
	white-space: nowrap;
}

.btn-signup,
.btn-download {
	text-decoration: none;
	height: 45px;
	border-radius: 4px;
	background-color: #3e6588;
	background-image: linear-gradient(to right, #2887af, #3e6588);
	color: var(--bs-white);
	border: none;
	font-weight: 600;
	font-size: 15px;
	padding: 12px 16px;
	text-align: center;
	white-space: nowrap;
}

.btn-download {
	background: transparent;
	background-color: var(--bs-white);
	border: 1px solid #2887af !important;
	color: #2887af;
	margin-bottom: 16px;
}

.btn-signup:hover {
	color: var(--bs-white);
}

.btn-download:hover {
	color: #2887af;
}

.offcanvas-header,
.offcanvas-body {
	background-color: #f3f3f3;
}

.btn-block {
	height: 168px;
	background-color: var(--bs-white);
	padding: 20px;
	box-shadow: 1px -4px 47px rgba(62, 101, 136, 0.15),
		-1px -1px 10px rgba(62, 101, 136, 0.08);
	border-radius: 3px 3px 0px 0px;
}

.offcanvas-body .link {
	color: #3e6588;
	font-size: 14px;
	padding: 12px 16px 8px;
}

.modal-body img {
	display: block;
	width: 78px;
	margin: auto;
}

.modal-body p {
	color: #3a3a3a;
	text-align: center;
	font-weight: 600;
	font-size: 24px;
}

#download-notify {
	display: none;
	font-family: "Montserrat", sans-serif;
	position: fixed;
	z-index: 500;
	font-weight: 500;
	bottom: 4rem;
	right: 1rem;
	font-size: 13px;
	text-align: right;
	box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.25);
	padding: 1rem;
	border-radius: 6px;
}

.warning-animation {
	animation: warning 0.05s ease infinite alternate;
}

@keyframes warning {
	0% {
		transform: translateX(-3px);
	}
	100% {
		transform: translateX(3px);
	}
}

@media screen and (max-width: 768px) {
	.modal-body img {
		width: 64px;
	}

	.modal-body p {
		font-size: 20px;
	}
}

.control-overflow {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

@media screen and (max-width: 480px) {
	.logo {
		height: 28px;
	}
}
