﻿.modal-content {
	border-radius: 8px;
	border: none;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.modal-header {
	border-bottom: none;
	padding: 1.5rem 1.5rem 0.5rem;
}

.modal-title {
	color: #2d7a52;
	font-weight: 500;
	font-size: 1.75rem;
}

.modal-body {
	padding: 1.5rem;
}

.input-group-custom {
	position: relative;
	margin-bottom: 1rem;
}

	.input-group-custom .form-control {
		padding-left: 45px;
		height: 48px;
		border: 1px solid #dee2e6;
		border-radius: 6px;
		background-color: #e8f4ee;
		transition: all 0.3s;
	}

		.input-group-custom .form-control:focus {
			border-color: #2d7a52;
			box-shadow: none;
			background-color: #e8f4ee;
		}

		.input-group-custom .form-control::placeholder {
			color: #999;
		}

	.input-group-custom .input-icon {
		position: absolute;
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
		color: #464b51;
		z-index: 10;
		font-size: 1.2rem;
		pointer-events: none;
	}

	.input-group-custom .toggle-password {
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
		color: #464b51;
		cursor: pointer;
		z-index: 10;
		font-size: 1.2rem;
		transition: color 0.3s;
	}

		.input-group-custom .toggle-password:hover {
			color: #2d7a52;
		}

.btn-login {
	background-color: #3d8f62;
	border: none;
	height: 48px;
	border-radius: 25px;
	font-weight: 500;
	color: white;
	transition: background-color 0.3s;
}

	.btn-login:hover {
		background-color: #2d7a52 !important;
		color: white !important;
	}

.btn-register {
	border: 1px solid #3d8f62;
	color: #3d8f62;
	height: 48px;
	border-radius: 25px;
	font-weight: 500;
	background: white;
	transition: all 0.3s;
}

	.btn-register:hover {
		background: #3d8f62 !important;
		color: white !important;
	}

.form-check-input:checked {
	background-color: #3d8f62;
	border-color: #3d8f62;
}

.link-custom {
	color: #3d8f62;
	text-decoration: none;
	transition: color 0.3s;
	font-size: 0.95rem;
}

	.link-custom:hover {
		color: #2d7a52;
		text-decoration: underline;
	}

.alert-custom {
	border-radius: 6px;
	border: none;
}

.password-requirements {
	font-size: 0.85rem;
	color: #6c757d;
	margin-top: -0.5rem;
	margin-bottom: 1rem;
	padding-left: 45px;
}

#loginForm, #registerForm, #forgotPasswordForm {
	display: none;
}

	#loginForm.active, #registerForm.active, #forgotPasswordForm.active {
		display: block;
	}

.remember-section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem;
	font-size: 0.95rem;
}

.form-check-label {
	font-size: 0.95rem;
}

.terms-text {
	font-size: 0.9rem;
	color: #000;
	text-align: center;
	margin-bottom: 1rem;
}

.switch-form-text {
	text-align: center;
	margin-top: 1rem;
	font-size: 0.95rem;
	color: #000;
}
