:root {
	--success-color: #2ecc71;
	--error-color: #e74c3c;
	--color: #fff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: url('../img/bag.png') no-repeat;
	height:100%;
	width:100%;
	overflow: hidden;
	background-size:cover;
	font-family: Arial, Helvetica, sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.container {
	margin-top: 45px;
	background-color: rgba(255, 255, 255, 0.4);;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	width: 350px;
}

h2 {
	text-align: center;
	margin: 0 0 20px;
}

.form {
	padding: 10px 40px;
}

.form-control {
	margin-bottom: 10px;
	padding-bottom: 20px;
	position: relative;
}

.form-control label {
	color: #000;
	display: block;
	margin-bottom: 5px;
}

.form-control input {
	width: 100%;
	border: 2px solid #f0f0f0;
	border-radius: 4px;
	display: block;
	padding: 10px;
	font-size: 14px;
}

.form-control input:focus {
	border-color: #777;
	outline: 0;
}

.form-control.success input {
	border-color: var(--success-color);
}

.form-control.error input {
	border-color: var(--error-color);
}

.form-control small {
	color: var(--error-color);
	position: absolute;
	bottom: 0;
	left: 0;
	visibility: hidden;
}

.form-control.error small {
	visibility: visible;
}

.form button {
	cursor: pointer;
	background-color: #3498db;
	border: 2px solid #3498db;
	border-radius: 4px;
	color: #fff;
	display: block;
	font-size: 16px;
	padding: 10px;
	margin-top: 20px;
	width: 100%;
}

.error {
	position: absolute;
	left: var(--left-width);
	bottom: -4px;
	color: red;
	font-size: 14px;
}

.submit .btn {
	margin-top: 10px;
	width: 100%;
	height: 50px;
	background-color: #e8ebf0;
	border: 1px solid #e8ebf0;
	color: #fff;

}

.submit .info {
	margin-top: 10px;
	color: #6cc35b;
	font-size: 14px;
}