
* {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Poppins', sans-serif;
  height: 100%;
  width: 100%;
  padding: 0;
}

input:focus,
button:focus,
input:active,
button:active {
  outline: none;
}

label {
  display: inline-block;
  margin-bottom: 5px;
}

.login-register {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 100%;
	width: 100%;
	padding: 10% 0;
	position: fixed;
}

.login-card {
	width: 400px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #ffffff;
	background: #ffffff;
}
@media (max-width: 576px) {
	.login-card {
		width: 300px;
	}
}

.login-heading {
	text-align: center;
	margin-bottom: 20px;
  line-height: 30px;
  font-size: 21px;
  color: #5d6267;
  font-weight: 400;
}

.form-group {
	margin-bottom: 15px;
	align-items: center;
}

.form-control,
.form-control-success {
	width: 100%;
	min-height: 36px;
	padding: 5px 15px;
	border: 0.5px solid #f1f0f0;
	border-radius: 3px;
	box-shadow: none;
	font-size: 14px;
	font-family: inherit;
}

.form-control:focus {
    background: rgba(253, 253, 253, 1);
    outline: none;
    border: 0.5px solid #cedbe6;
}

.page-cover img {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
    position: fixed;
    object-fit: cover;
    width: 100%;
	height: 100%;
	z-index: -2;
}

.page-cover .page-cover-bg {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333;
	opacity: 0.66;
	z-index: -1;
}

.page-bg {
    width: 100%;
    height: 80vh;
    z-index: -1;
    position: absolute;
    background: #6cadef;
}

.page-title {
    position: absolute;
    bottom: 4vh;
    font-size: 6vh;
    text-align: center;
    width: 100%;
    color: lightgrey;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
	margin: 2px 1px;
	font-weight: 500;
	cursor: pointer;
	border: none;
	border-radius: 5px;
	transition: opacity 0.1s ease-in;
	font-family: inherit;
	padding: 12px 20px;
	font-size: 16px;
	min-height: 36px;
	width: calc(100% - 2px);
	background: #6cadef;
	color: #ffffff;
	border: 1px solid #6cadef;
}
.btn:hover {
	opacity: 0.6;
	transition: opacity 0.1s ease-out;
}
.btn:focus {
	outline: 0;
	opacity: 0.6;
}

@media (max-width: 576px) {
    .page-title {
        font-size: 5vh;
    }
    .login-card {
        width: 90vw;
    }
}

@keyframes boxAnime {
  0% {
    transform: translate(1000px, 0);
    opacity: 0;
  }

  50% {
    transform: translate(-50px) rotateZ(-20deg);
    opacity: 1;
  }

  100% {
    transform: translate(0);
  }
}
