﻿.signup,
.contact {
	padding: 56px 16px;
}

.signup .h3 {
	font-weight: 700;
	letter-spacing: -0.25px;
	margin: 0 0 24px 0;
}

.signup form,
.contact form {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: flex-start;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
}

.signup form label span {
	float: right;
	background-color: var(--s1);
	font-size: 12px;
	line-height: 1;
	padding: 4px 8px;
	border-radius: 12px;
	color: var(--s4);
	font-weight: 500;
	text-transform: lowercase;
}

.signup .form-check a {
	font-size: 14px;
	line-height: 20px;
	color: var(--p);
	text-decoration: underline;
	text-transform: lowercase;
}

.btn-signup {
	background-color: var(--s);
	color: var(--light);
	width: 100%;
}

.btn-signup:hover {
	color: var(--light);
}

#usuario-existe {
	font-size: 12px;
	line-height: 16px;
	margin: 8px 0 0 0;
	text-align: left;
	color: red;
}

#usuario-existe a {
	font-weight: 600;
}

/* CONFIRMAR TELEFONE */

.confirm .h3 {
	line-height: 40px;
	margin-bottom: 12px;
}

.confirm .token {
	border: none;
	text-align: center;
}

.confirm .token label {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.75px;
}

.confirm .token label strong {
	display: block;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.5px;
}

.cad-tel .btn-form-pd {
	width: 100%;
	background-color: var(--p);
	color: var(--light);
	padding: 16px 24px;
	margin: 24px 0 12px;
}

.cad-tel .change-number {
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.5px;
	color: var(--s3);
	text-decoration: underline;
}

.cad-tel form .form-group {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	max-width: 720px;
}

.cad-tel form .form-group input {
	max-width: 100%;
}

.cad-tel form .form-group input.btn {
	max-width: 100%;
	margin: 0;
	border: none;
	background-color: var(--s2);
	color: var(--s4);
}

.novo-token {
	text-align: left;
}

.explicativo {
	margin-top: 24px;
}

.select-number {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: flex-start;
	align-items: center;
}

/* ESQUECEU SENHA */

.btn-form-pd {
	background-color: var(--s);
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1.25px;
	color: var(--light);
	border: none;
}

/* MODAL ALTERAR TELEFONE */

.alterar-tel form {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}

.alterar-tel form .form-ddd {
	max-width: 15%;
}

.alterar-tel form .form-phone {
	max-width: calc(85% - 24px);
}

.alterar-tel form .btn {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.signup,
	.contact {
		max-width: 720px;
		margin: auto;
	}

	.signup form,
	.contact form {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-content: flex-start;
		justify-content: flex-start;
		align-items: center;
		gap: 24px;
	}

	#form-ddd {
		max-width: 10%;
	}

	#form-phone {
		max-width: calc(90% - 24px);
	}

	.cad-tel form .form-group input {
		max-width: 60%;
	}

	.cad-tel form .form-group input.btn {
		max-width: calc(40% - 12px);
	}
}

@media screen and (min-width: 1366px) {
	.signup:before,
	.signup:after {
		content: "";
		width: 430px;
		height: 580px;
		background-image: url(../img/bg-colmeia-small.svg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 100%;
		position: absolute;
		z-index: -1;
		opacity: 0.8;
	}

	.signup:before {
		top: 300px;
		left: 0;
		transform: rotate(180deg);
	}

	.signup:after {
		bottom: 300px;
		right: 0;
	}

	.confirm .token {
		border: none;
		text-align: left;
	}

	.cad-tel .btn-form-pd {
		max-width: 70%;
	}
}

