@import "/include/css/generic/body.css"; /* Using a string */

/* FUNDO */
body {
	height: 100vh;
	background: #fff;
}


/* CARD */
.login .box {
	width: 100%;
	min-width: 350px;
	min-height: 400px;
	background: #f6f6f6;
	padding: 35px 25px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-bottom: 4px solid #ff7a00;
	text-align: center;
}

/* LOGO */
.logo img {
	max-width: 300px;
	margin-bottom: 20px;
}

/* FORM */
.login-form {
	margin-top: 50px;
}

/* INPUT GROUP */
.input-form-login {
	display: flex;
	/* align-items: center; */
	margin-bottom: 15px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #d0d0d0;
	transition: 0.3s;
}

/* FOCUS */
.input-form-login:focus-within {
	border-color: #c62828;
	background: #fff;
}

/* ICON */
.icon-form {
	background: #dfdfdf;
	color: #ff7a00;
	border-radius: 6px;
	padding: 12px;
	min-width: 48px;
	min-height: 45px;
	text-align: center;
}

/* INPUT */
.input-form-login input {
	border: none;
	outline: none;
	padding: 12px;
	flex: 1;
	background: transparent;
	font-size: 14px;
}

/* BOTÃO */
.btn-login {
	width: 100%;
	padding: 14px;
	border: none;
	border-radius: 8px;
	background: #c62828;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
	margin-top: 10px;
}

/* HOVER */
.btn-login:hover {
	background: #a61d1d;
	transform: translateY(-1px);
}

/* CLICK */
.btn-login:active {
	transform: scale(0.98);
}

/* CLEAR (mantido compatibilidade) */
.clear {
	clear: both;
}
