﻿main {
	background: whitesmoke !important;
}

#Links {
	margin: 0 !important;
}

form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 100px auto;
	padding: 50px;
	background-color: #fff;
	border: 3px solid #e9f0f6;
	border-radius: 10px;
	width: 300px;
}

	form a,
	form span {
		color: #0083FF;
		cursor: pointer;
	}

	form > p {
		text-align: center;
		color: var(--saa-blue);
		margin: 0 0 20px 0;
		font-size: 11px;
	}

		form > p:first-of-type > b,
		form > p:nth-last-of-type(2) > b {
			cursor: pointer;
			padding: 0 0 1px 0;
			border-bottom: 1px solid #0083FF;
			color: #0083FF;
			font-weight: 400;
		}

		form > p:first-of-type {
			margin: 15px 0 6px 0;
		}



	form > h1 {
		color: var(--saa-blue);
		font-size: 22px;
		font-weight: 600;
	}

	form > div {
		position: relative;
		width: 100%;
		margin: 15px 0;
		height: 1px;
		background: gray;
		display: flex;
		align-items: center;
		justify-content: center;
	}

		form > div > b {
			z-index: 2;
			color: grey;
			background: #fff;
			text-align: center;
			font-weight: 500;
			padding: 0 10px;
		}

	form input {
		width: -webkit-fill-available;
		padding: 8px 16px;
		font-size: 14px;
		border-radius: 30px;
		outline: none;
		color: #000000;
		margin-top: 12px;
		background: #f6f6f6;
		border: solid 1px #dfdfdf52;
		transition: 200ms;
	}
	form > div{
		position:relative;
	}
		form > div > i {
			position: absolute;
			top: 50%;
			right: 8px;
			font-size: 11px;
			cursor: pointer;
			color: #bbbbbb;
		}
		form input::placeholder {
			color: #b9b9b9;
		}
	form > button {
		width: 200px;
		height: 35px;
		color: #fff;
		background-color: #1c3247;
		border-radius: 20px;
		border: none;
		font-size: 14px;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 8px;
	}




@media(max-width:576px) {
	form {
		padding: 15px;
		margin: 50px auto;
		width: calc(100% - 32px);
	}

		form > div {
			width: 100%;
		}
			form > div > b {
				font-size: 11px;
			}
		form > button {
			width: 122px;
			height: 31px;
			font-size: 12px;
		}
		form > div:first-of-type {
			margin-top: 22px;
		}
}
