.wrap-container {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.signup-container {
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	max-width: 500px;
	width: 100%;
	animation: slideIn 0.5s ease-out;
	overflow: hidden;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.signup-header {
	text-align: center;
	margin-bottom: 30px;
}

.signup-header h2 {
	color: #fff;
	font-weight: 700;
	margin-bottom: 10px;
	padding: 20px;
	background: #ef352e;
	font-size: 20px;
	text-transform: uppercase;
}

.signup-header p {
	color: #6c757d;
	font-size: 14px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	font-size: 16px;
}

.form-control {
	border: 2px solid #e0e0e0;
	border-radius: 4px;
	padding: 20px 15px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #ef352e;
	box-shadow: 0 0 0 0.2rem rgba(75, 188, 57, 0.25);
}

.password-wrapper {
	position: relative;
}

.password-wrapper .form-control {
	padding-right: 45px;
}

.toggle-password {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #6c757d;
	transition: color 0.3s ease;
}

.toggle-password:hover {
	color: #ef352e;
}

.account-type-group {
	margin-bottom: 25px;
}

.radio-group {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}

.custom-radio {
	flex: 1;
}

.custom-radio input[type="radio"] {
	display: none;
}

.custom-radio label {
	display: block;
	padding: 12px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	color: #6c757d;
}

.custom-radio input[type="radio"]:checked+label {
	background: #ef352e;
	border-color: #ef352e;
	color: white;
}

.custom-radio label:hover {
	border-color: #ef352e;
	transform: translateY(-2px);
}

.btn-signup {
	width: 100%;
	padding: 14px;
	background: #ef352e;
	border: none;
	border-radius: 10px;
	color: white;
	font-weight: 600;
	font-size: 20px;
	margin-top: 20px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.btn-signup:hover {
	color: white;
	background: #3a9c2d;
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(75, 188, 57, 0.4);
}

.login-link {
	font-size: 18px;
	text-align: center;
	margin-top: 20px;
	color: #6c757d;
	margin-bottom: 20px;
}

.login-link a {
	color: #ef352e;
	font-weight: 600;
	text-decoration: none;
}

.login-link a:hover {
	text-decoration: underline;
}

.error-message {
	color: red;
	font-size: 13px;
	margin-top: 4px;
}

.alert {
	padding: 10px;
	border-radius: 6px;
	margin-top: 10px;
}

.alert-success {
	background: #d4edda;
	color: #155724;
}

.alert-danger {
	background: #f8d7da;
	color: #721c24;
}

.password-wrapper {
	position: relative;
}

.toggle-password {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #888;
}

.signup-container form {
	padding: 0px 30px;
}

.signup-container .text-center.mt-3 {
	margin-bottom: 20px;
	font-size: 18px;
}