*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
	background-color: #fafafa;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
	padding: 20px;
}

.login-container {
	background-color: white;
	border: 1px solid #dbdbdb;
	border-radius: 1px;
	margin-top: 40px;
	padding: 40px;
	text-align: center;
	width: 100%;
	max-width: 350px;
}

.logo {
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 10px;
}

input {
	background: #fafafa;
	border: 1px solid #dbdbdb;
	border-radius: 3px;
	padding: 9px 0 7px 8px;
	width: 100%;
	font-size: 14px;
}

.login-button {
	background: #0095f6;
	border: none;
	border-radius: 4px;
	color: white;
	font-weight: 600;
	padding: 5px 9px;
	width: 100%;
	font-size: 14px;
	cursor: pointer;
	margin-top: 15px;
	height: 32px;
	display: block;
}

.divider {
	display: flex;
	align-items: center;
	margin: 20px 0;
}

.line {
	flex: 1;
	height: 1px;
	background: #dbdbdb;
}

.or {
	color: #8e8e8e;
	font-size: 13px;
	font-weight: 600;
	margin: 0 18px;
}

.facebook-login {
	color: #385185;
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.forgot-password {
	color: #00376b;
	font-size: 12px;
	text-decoration: none;
	margin-top: 20px;
	display: block;
}

.signup-container {
	background-color: white;
	border: 1px solid #dbdbdb;
	border-radius: 1px;
	margin-top: 10px;
	padding: 20px;
	text-align: center;
	width: 100%;
	max-width: 350px;
}

.signup-text {
	color: #262626;
	font-size: 14px;
}

.signup-link {
	color: #0095f6;
	text-decoration: none;
	font-weight: 600;
}

.app-download {
	margin-top: 20px;
	text-align: center;
}

.app-text {
	font-size: 14px;
	margin-bottom: 20px;
}

.app-links {
	display: flex;
	justify-content: center;
	gap: 8px;
}