
/*
<link
	rel="stylesheet"
	href="../../static/css/tenant/tenant_create.css"
	th:href="@{/css/tenant/tenant_create.css}">
*/

@import url('../variables.css');



.parent  {
	box-sizing: border-box;
	height: 100%; 
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
}

.inputParent{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: flex-start;
}


input[type="text"],
input[type="email"],
input[type="password"]{
	width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
	box-sizing: border-box; 
}

.form-group .error {
    color: red;
    font-size: 0.875em;
}

@media ( max-width : 400px) {
	.parent {
		padding: 20px;
		width: 100%;
	}
	.inputParent{
		width: 100%;
	}
	.formClass{
		width: 100%;
	}
}
