/* Main Wrapper */
.reset-password{
	padding: 80px 0;
}
.reset-password form{
	margin-bottom: 0px;
}
.reset-password .container {
	max-width: 550px;
	width: 100%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(12px);
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
/* Header */
.reset-password-inner-header h2 {
	font-size: 26px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	text-align: center;
	margin-top: 0;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.reset-password-inner-header p {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
	text-align: center;
	margin-bottom: 25px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
/* Form Group */
.reset-password-inner-form-group {
	margin-bottom: 0px;
}
.inner-form-group-label {
	display: block;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 15px;
	color: #222;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.inner-form-group-form-control {
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 20px;
	border: 1px solid #000;
	border-radius: 10px;
	background-color: rgb(255 255 255 / 60%);
	outline: none;
	font-size: 15px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	box-shadow: inset 0 1px 3px rgb(0 0 0 / 13%);
	transition: background-color 0.3s ease;
}
.inner-form-group-form-control:focus {
	background-color: #fff;
}
/* Footer */
.reset-password-inner-content-form-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 5px;
}
.reset-password-inner-content-form-footer a {
	color: #007bff;
	font-size: 14px;
	text-decoration: none;
	transition: color 0.3s ease;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
}
.reset-password-inner-content-form-footer a:hover {
	color: #0056b3;
}
.reset-password-inner-content-form-btn {
	background: #007bff;
	color: white;
	border: none;
	padding: 12px 20px;
	font-family: "Jost", sans-serif;
	letter-spacing: 1px;
	font-size: 15px;
	border-radius: 10px;
	cursor: pointer;
	transition: background 0.3s ease;
}
.reset-password-inner-content-form-btn:hover {
	background: #0056b3;
}
/* Modern Alerts */
.modern-alert {
	display: flex;
	align-items: center;
	background-color: #f1f1f1;
	border-left: 5px solid;
	border-radius: 8px;
	padding: 15px 20px;
	margin: 20px auto;
	max-width: 100%;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	position: relative;
	font-size: 15px;
	gap: 12px;
	flex-wrap: wrap;
}
.alert-success { 
	border-color: #28a745; 
	background-color: #e6f9ed; 
	color: #157347; 
}
.alert-danger { 
	border-color: #dc3545; 
	background-color: #fdecea; 
	color: #842029; 
}
.alert-info { 
	border-color: #0dcaf0; 
	background-color: #e9f7fd; 
	color: #055160; 
}
.alert-icon {
	font-size: 22px;
}
.alert-content {
	flex: 1;
	min-width: 200px;
	font-family: "Jost", sans-serif;
    letter-spacing: 1px;
}
.alert-close {
	background: none;
	border: none;
	font-size: 22px;
	color: inherit;
	cursor: pointer;
	position: absolute;
	right: 15px;
	top: 12px;
	line-height: 1;
}
/* Responsive Design */
@media (max-width: 768px) {
	.modern-alert {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		padding: 15px;
	}
	.alert-close {
		top: 10px;
		right: 10px;
	}
}
/* Responsive */
@media (max-width: 480px) {
	.reset-password {
		padding-left: 15px;
		padding-right: 15px;
	}
	.reset-password .container {
		padding: 30px 20px;
	}
	.reset-password-inner-header h2 {
		font-size: 22px;
	}
	.reset-password-inner-header p {
		font-size: 14px;
	}
	.reset-password-inner-content-form-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}
	.reset-password-inner-content-form-btn {
		width: 100%;
		text-align: center;
	}
}