@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');

:root {
	--main-yellow: #C9C774;
	--main-red: #9d1b2a;
	--main-green: #6CB47D;
}

*, *::before, *::after {
	box-sizing: border-box !important;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family:'Poppins', sans-serif;
	overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
	line-height: initial;
	margin: 0;
}

dl, ol, ul, p {
	margin-bottom: 0;
	margin-top: 0;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

main {
	display: flex;
	flex-direction: column;
}

.container-main {
	max-width: var(--container-max-width);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #000000 !important;
	box-shadow: 1px 2px 0px #000000 !important;
	border-radius: 50px !important;
	padding: 10px 35px;
	max-width: 300px;
}

.btn.btn-primary {
	background-color: #dd6e3c !important;
	color: #fff !important;
}

.section__general {
	height: 100dvh;
	background-color: #fffade;
}

.section__general .container-main,
.section__general .container-main .row-login {
	height: 100%;
}

.section__general#login {
	background-image: url('../images/login/login-bg.jpg');
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.row-login > div:nth-child(1) {
	align-self: flex-end;
	height: max-content;
}

.row-login > div:nth-child(2) {
	align-self: center;
} 

.row-login .btn {
	width: 100%;
}

.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.logo-container img {
	max-width: 100px;
	width: 100%;
}

.form-container {
	background-color: #9c4953;
	border: 1px solid #000000;
	box-shadow: 1px 2px 0px #000000;
	border-radius: 50px; 
	padding: 40px;
}

.form-label,
.form-check-label {
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
}

.form-control {
	background-color: #fff;
	border: 1px solid #000000 !important;
	height: 40px;
	box-shadow: 1px 2px 0px #000000 !important;
	outline: none !important;
	border-radius: 50px;
	padding-left: 15px;
	padding-right: 15px;
}

.form-check {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-check-input[type="checkbox"] {
	border: 1px solid #000000 !important;
	outline: none !important;
	box-shadow: 1px 2px 0px #000000;
	border-radius: 5px;
	width: 20px;
	height: 20px;
	margin-top: 0 !important;
}

.form-check-input[type="checkbox"]:checked {
	background-color: #dd6e3c;
}

.auth-form-element {
	margin-bottom: 20px;
}

.alert {
	padding: 7px;
	border: none !important;
	border-radius: 10px !important;
}

.alert > * {
	margin-top: 2px !important;
	margin-bottom: 2px !important;
}

.alert-success {
	background-color: var(--main-green) !important;
	color: #242424 !important;
}

.alert-danger {
	background-color: var(--main-red) !important;
	color: #fff !important;
}

@media (max-width: 991px) {
	.section__general {
		padding: 40px 0;
	}

	.row-login {
		align-items: center;
	}

	.row-login > div:nth-child(1) {
		display: none;
	}

	.row-login > div:nth-child(2) {
		align-self: unset;
		height: auto;
	} 
}

@media (min-width: 576px) {
	:root {
		--container-max-width: 540px;
	}
}

@media (min-width: 768px) {
	:root {
		--container-max-width: 720px;
	}
}

@media (min-width: 992px) {
	:root {
		--container-max-width: 960px;
	}
}

@media (min-width: 1200px) {
	:root {
		--container-max-width: 1140px;
	}
}

@media (min-width: 1400px) {
	:root {
		--container-max-width: 1360px;
	}
}