form {
	text-align: center;
}

input[type="text"],
input[type="number"],
input[type="password"] {
	padding: 1em 0.8em;
	font-size: 1em;
	margin-top: 0.8em;
	margin-bottom: 0.8em;
	border: 0.15em solid white;
	border-radius: 12px;
	background-color: #1e1e1e;
	color: white;
	outline: none;
	transition: box-shadow 0.2s, transform 0.2s;
	width: 50%;
	min-width: 200px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus {
	box-shadow: 0 0 0.2em white;
	transform: scale(1.03);
}

form input[type="submit"],
input[type="button"] {
	padding: 12px 20px;
	font-size: 16px;
	background-color: #ff5c5c;
	color: white;
	border: none;
	border-radius: 12px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

form input[type="submit"]:hover,
input[type="button"]:hover {
	background-color: #ff3c3c;
	transform: scale(1.05);
}

form input[type="submit"].blue,
input[type="button"].blue {
	background-color: #5c9eff !important;
}
form input[type="submit"].blue:hover,
input[type="button"].blue:hover {
	background-color: #3c8cff !important;
}

form input[type="submit"].green,
input[type="button"].green {
	background-color: #32a852 !important;
}
form input[type="submit"].green:hover,
input[type="button"].green:hover {
	background-color: #33d649 !important;
}

form input[type="submit"]:active,
input[type="button"]:active {
	transform: scale(0.97);
}

.leave-form label {
	display: block;
	margin-bottom: 6px;
}

.leave-input-group {
	display: flex !important;
	align-items: stretch !important;
	width: 100%;
}

.leave-input-group input[type="text"] {
	flex: 1 1 auto !important;
	box-sizing: border-box !important;
	margin: 0 !important;
	border: 1px solid #444 !important;
	border-right: none !important;
	border-radius: 6px 0 0 6px !important;
	padding: 8px 10px !important;
	background: #111 !important;
	color: #fff !important;
	font-size: 14px !important;
}

.leave-input-group .leave-submit {
	box-sizing: border-box !important;
	margin: 0 !important;
	border: 1px solid #444 !important;
	border-left: none !important;
	border-radius: 0 6px 6px 0 !important;
	padding: 0 14px !important;
	background: #2ecc71 !important;
	color: #fff !important;
	font-size: 14px !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
}


