@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');


* {
	box-sizing: border-box;
}
body {
	margin: 0;
	background: url(../../images/futsalbg.jpg) center;
	background-repeat: no-repeat;
	background-size: cover;
	font-family: 'Montserrat', sans-serif !important;
}
.body-section {
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.top-logo {
	position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.top-logo h3 {
	margin: 0;
	font-size: 24px;
}
.container-page {
	padding: 30px 100px;
}
.card {
	background: rgba(255, 255, 255, .8);
	padding: 30px 50px;
	border-radius: 20px;
	width: 500px;
	max-width: 100%;
	font-size: 14px;
	font-weight: 500;
}
.card h3 {
	text-align: center;
	margin-top: 0;
	font-size: 24px;
}
.form-control {
	background: #f2f2f2;
	border: 1px solid #b2b2b2;
	border-radius: 12px;
	padding: 8px 20px;
	width: 100%;
	font-size: 16px;
	height: 50px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}
.form-control:focus {
	background: white;
	outline: none;
	border-color: #c62836;;
}
form button {
	background: #c62836;
	border: 1px solid #c62836;
	border-radius: 12px;
	padding: 8px 20px;
	width: 100%;
	font-size: 16px;
	height: 50px;
	text-align: center;
	color: white;
	cursor: pointer;
}
form button:focus,
form button:hover {
	background: #a4202c;
	border-color: #a4202c;
}
.kf {
	display: flex;
	align-items: center;
	color: #333333;
	margin-bottom: 25px;
}
.kf label {
	display: flex;
	align-items: center;
	gap: 5px;
}
.kf input[type=checkbox] {
	transform: scale(1.3);
}
.kf a {
	margin-left: auto;
	color: #333333;
	text-decoration: none;
}
.f-form {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
}
.f-form a {
	color: #333333;
	text-decoration: none;
	margin-left: 5px;
	font-weight: 600;
}
a:hover {
	text-decoration: underline;
}
.password-container {
    position: relative;
}
.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.toggle-password svg {
	width: 20px;
	height: 20px;
	opacity: .75;
}

@media screen and (max-width: 991px) {
	.body-section {
		justify-content: center;
		flex-direction: column;
		gap: 20px;
	}
	.container-page {
		padding: 0 15px;
		max-width: 100%;
		display: flex;
		justify-content: center;
		margin-bottom: 40px;
	}
	.top-logo {
		position: relative;
		left: auto;
		top: auto;
	}
	.top-logo h3 {
		font-size: 20px;
		text-shadow: 0px 0px 6px white;
	}
}
@media screen and (max-width: 499px) {
	.top-logo {
		flex-direction: column;
		padding: 0 15px;
	}
	.top-logo h3 {
		text-align: center;
	}
	.card {
		padding: 30px;
	}
}
@media screen and (max-width: 399px) {
	.card {
		padding: 15px;
		font-size: 12px;
	}
	.card h3 {
		font-size: 16px;
	}
	.f-form {
		margin-top: 15px;
	}
}

.close{
	width: 0px !important;
	height: 0px !important;
}

.btn-warning {
	margin-left: 0px !important;
}

.alert-dismissable .close, .alert-dismissible .close {
	right: -17px !important;
}

h3{
	font-weight: bold !important;
	color: #000 !important;
}