/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'poppins', sans-serif;
	overflow: hidden;
	background: #000080;
}

.title-form {
	position: relative;
	font-size: 23px;
}

.title-form::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 25px;
	height: 4px;
	border-radius: 30px;
	background: linear-gradient(90deg, rgba(0,0,128,1) 0%, rgba(0,0,128,1) 9%, rgba(255,255,255,1) 100%);;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #f0f0f0;
	box-shadow: 20px 20px 60px #bebebe79,
		-20px -20px 60px #ffffff82;
	padding: 30px;
	width: 400px;
	border-radius: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.form-cad {
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: #f0f0f0;
	box-shadow: 20px 20px 60px #bebebe,
		-20px -20px 60px #ffffff;
	padding: 30px;
	width: 450px;
	margin-top: 700px;
	margin-bottom: 100px;
	border-radius: 20px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

::placeholder {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form button {
	align-self: flex-end;
}

.flex-column>label {
	color: #151717;
	font-weight: 600;
	margin-left: 15px;
}

.inputForm {
	border: 1.5px solid #ecedec;
	border-radius: 10px;
	height: 50px;
	display: flex;
	align-items: center;
	transition: 0.2s ease-in-out;
}

.input {
	border-radius: 10px;
	border: solid 1px #dddddfd3;
	width: 100%;
	height: 100%;
	padding-left: 10px;
	background: #f0f0f0;
}

.input:focus {
	outline: none;
}

.inputForm:focus-within {
	border: 1.5px solid #000080;
}

.flex-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
}

.flex-row>div>label {
	font-size: 14px;
	color: black;
	font-weight: 400;
}

.span {
	font-size: 14px;
	margin-left: 5px;
	color: #2d79f3;
	font-weight: 500;
	cursor: pointer;
}

.button-submit {
	margin: 20px 0 10px 0;
	background-color: #000080;
	border: none;
	color: white;
	font-size: 15px;
	font-weight: 500;
	border-radius: 10px;
	height: 50px;
	width: 100%;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.button-submit:hover {
	background-color: #0000c8;
}

.p {
	text-align: center;
	color: black;
	font-size: 14px;
	margin: 5px 0;
}