@import url('https://fonts.googleapis.com/css2?family=Questrial&family=Varela+Round&display=swap');
@import url("https://fonts.googleapis.com/css?family=Abel");

* {
    margin: 0;
    padding: 0;
}
header, footer, section, nav {
    display: block;
}
html, body {
    height: 100%;
}
body {
  background-color: #3b3b3b;
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 100vh;
  font-family: 'Questrial', sans-serif;
  font-size: 14px;
  line-height: 1.42;
}
a:link,
a:visited {
    text-decoration: none;
    color: #717171;
}
img {
    max-width: 100%;
    margin-bottom: 12px;
}

.body-wrapper {
  width: 100%;
  min-height: 100vh;

  /* Flex */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.wrapper{
  position: relative;
	display: block;
	box-sizing: border-box;
	max-width: 560px;
  padding: 20px 20px 20px 20px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	border-radius: 2px;
	background-color: #fff;
	box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.15);
}

#box_logo{
	display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
	padding: 20px 0;
	-webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.box-title-logo{
	display: block;
	width: 200px;
	height: 42px;
	background-image: url('images/image-logo@2x.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	/* margin: 0 auto; */
	-webkit-align-flex:	auto;
	-ms-flex-item-align: auto;
	-ms-grid-row-align: auto;
	align-self: auto;
	opacity: 1;
}

.signin_box{
	position: relative;
	display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
	-webkit-box-pack: center;
  -moz-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
	margin-top: 0px;
  margin-bottom: 40px;
}

.signin-background {
	border: 1px solid #E2E0E0;
	opacity: 1;
	background:  #fff;
	position: absolute;
	width: 260px;
	left: 50%;
	margin-left: -130px;
}

.powered-by {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: right;
    font: 12px/16px Abel;
    letter-spacing: 0px;
    color: #EFEFEF;
    text-shadow: 0px 3px 6px #00000029;
    opacity: 1;
}

.powered-by-img {
  content: url(../images/asw/idee.png);
  width: 17px;
  height: 15px;
  margin: 0px;
  background: transparent;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

/* .container-footer {
    padding-top: 12px;
}
@media only screen and (max-width: 1020px) {
    .container {
        left: 45%;
    }
}
@media only screen and (max-width: 650px) {
    .container {
        position: static;
        margin: 0 auto;
        width: 280px;
    }
} */

header {
    padding: 20px 0;
}

.logo img {
    border: none;
}
@media only screen and (max-width: 650px) {
    .logo img {
        display: none;
    }
    .logo {
        background: url(../images/dummylogo-mobile.png) no-repeat top center;
        display: block;
        height: 115px;
        width: 100px;
        margin: 0 auto;
    }
}

.content {
    padding-bottom: 80px;
    overflow: hidden;
}

.column {
    float: left;
}
.column.one {
    width: 50%;
    margin-right: 48px;
}

form {
    width: 240px;
    padding-bottom: 21px;
}
form label { /* labels are hidden */
    font-weight: bold;
}
form legend {
    font-size:1.2em;
    margin-bottom: 12px;
}
.form-element-wrapper {
    margin-bottom: 12px;
}
.form-element {
    width: 100%;
    padding: 13px 12px;
    border: none;
    font-size: 14px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}
.form-field {
    color: #B7B7B7;
    border: 1px solid #B7B7B7;
}
.form-field-focus,
.form-field:focus,
input[type="text"]:focus {
    color: #333333;
    border-color: #333;
}
.form-button {
    background: #B61601;
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    color: #ffffff;
    cursor: pointer;
}
.form-button:hover {
    background: #FF6400;
}
.form-error {
    padding: 0;
    color: #B61601;
}

.list-help {
    margin-top: 40px; /* offset padding on first anchor */
    list-style: none;
}
.list-help-item a {
    display: block;
    padding: 6px 0;
}
.item-marker {
    color: #be0000;
}

footer {
    color: #ffffff;
    font-size: 11px;
    background: #717171;
}
.footer-text {
    margin-bottom: 12px;
}
.footer-links a:link,
.footer-links a:visited {
    color: #ffffff;
    font-weight: bold;
}
.footer-links a:after {
    content: "\00a0\00a0\00a0|\00a0\00a0";
}
.footer-links a.last:after {
    content: "";
}
