:root {
	--primary-color: rgb(211, 17, 69);
	--blue-color: rgb(31, 120, 173);
}

html,
body {
	height: 100% !important;
}

body {
  	display: -ms-flexbox;
  	/* display: flex; */
  	-ms-flex-align: center;
  	align-items: center;
  	font-family: 'Noto Sans';
  	background-color: #f5f5f5;
	-webkit-font-smoothing: antialiased;
}

nav {
	background-color: var(--primary-color);
	color: #fff;
}

nav .navbar-brand {
	font-family: anton;
	font-size: 28px !important;
}

nav a {
	color: #fff;
}

main {
	flex: 1 0 auto;
}

.anton {
	font-family: 'Anton';
}

.bg-red {
	background-color: var(--primary-color) !important;
}

.bg-blue {
	background-color: var(--blue-color) !important;
}

.text-red {
	color: var(--primary-color) !important;
}

.text-blue {
	color: var(--blue-color) !important;
}

.text-700 {
	font-weight: 700;
}

.navbar-toggler-icon {
	color: #fff;
}

.form-signin {
  	width: 100%;
  	max-width: 330px;
  	padding: 15px;
  	margin: auto;
}
.form-signin .checkbox {
  	font-weight: 400;
}
.form-signin .form-control {
	position: relative;
	box-sizing: border-box;
	height: auto;
	padding: 10px;
	font-size: 16px;
}
.form-signin .form-control:focus {
  	z-index: 2;
}
.form-signin input[type="text"] {
	border: 1px solid #333;
	margin-bottom: -1px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.form-signin input:focus {
	outline: none;
}
.form-signin input[type="password"] {
	border: 1px solid #333;
	margin-bottom: 10px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.bg-holder {

	width: 100%;
	min-height: 100%;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	will-change: transform,opacity,filter;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-repeat: no-repeat;
	z-index: 0;
}

.avatar-profile {
	position: absolute;
	bottom: 0;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%);
}