@charset "utf-8";

html:not([os=mac]) button:focus,
html:not([os=mac]) input:focus,
html:not([os=mac]) textarea:focus,
html:not([os=mac]) input[type='submit']:focus,
html:not([os=mac]) select:focus {outline-color: rgba(256, 256, 256, .0);}

* {box-sizing: border-box;}
html {margin:0;padding:0; width: 100%; height: 100%;}
body {margin:0;padding:0; width: 100%; height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	background-color:#F9FAFB;
	background: rgb(25,68,237);
	background: linear-gradient(128deg, rgba(25,68,237,1) 0%, rgba(255,0,0,1) 100%);
	background-size: cover;
	background-repeat: no-repeat;
	font-family:"Dosis", Arial, Helvetica, sans-serif;
	font-size:14px;
	color: #00205b;}

a {color:#212B38;text-decoration:none;cursor:pointer;}


#notification {
	position: fixed;
	right: 20px;
	bottom: 20px;
	background-color: #202124;
	padding: 15px;
	border-radius: 5px;
	color: #FFF;
	font-size: 18px;
	color: rgba(256, 256, 256, 0.7);
}
#notification .title{
	padding-bottom: 10px;
	font-size: 32px;
}

.txt_c {
    background: -webkit-gradient(linear,left top,right top,from(#ff8a00),to(#da1b60));
    background: linear-gradient(to right,#ff8a00,#da1b60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-decoration-break: clone;
    font-weight: 700;
}
.bg_c {
	background-image: -webkit-gradient(linear,left top,right top,from(#ff8a00),to(#da1b60));
    background-image: linear-gradient(to right,#ff8a00,#da1b60);
}

#login {
	width: 400px;
	position: absolute;
	left: 50%;
	top: 50px;
	margin-left: -200px;
}
#login .title{
	width: 100%;
	padding: 15px;
	font-size: 30px;
	font-weight: normal;
	text-align: center;
	color: #FFF;
}
#login .content {
	padding: 15px;
	background-color: #FFF;
	border-radius: 5px;
    -webkit-box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 100px 0px rgba(0,0,0,0.25);
}
.mb_5 {margin-bottom: 5px;}
.mb_10 {margin-bottom: 10px;}
.mb_15 {margin-bottom: 15px;}

.s {
	width: 100%;
	display: block;
}
.s:after {content: ' '; display: block; width: 100%; clear: both;}

.s strong {
	font-size: 18px;
	color: #626262;
}
.s input[type=text], .s input[type=password]{
	width: 100%;
	border: 2px solid #DDD;
	height: 50px;
	border-radius: 5px;
	padding: 10px 15px;
	font-family:"Dosis", Arial, Helvetica, sans-serif;
	font-size: 20px;
	-webkit-transition: border-color 0.2s linear;
	-moz-transition: border-color 0.2s linear;
	-o-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
}
.s input[type=text]:hover, .s input[type=password]:hover, .s input[type=text]:focus, .s input[type=password]:focus {
	border-color: #949594;
}
.s input[type=text]::placeholder, .s input[type=password]::placeholder {
	color: #949594;
}

.s input[type=submit]{
	width: 100%;
	border: none;
	height: 50px;
	border-radius: 5px;
	color: #FFFFFF;
	text-align: center;
	font-family:"Dosis", Arial, Helvetica, sans-serif;
	font-size: 20px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-transition: filter 0.2s linear;
	-moz-transition: filter 0.2s linear;
	-o-transition: filter 0.2s linear;
	transition: filter 0.2s linear;
}
.s input[type=submit]:hover {
	filter: brightness(90%);
}

label.checkbox {
	height: 30px;
	line-height: 32px;
	cursor: pointer;
	font-size: 18px;
	color: #616263;
}
label.checkbox:hover {
	color: #212121;
}
input[type="checkbox"] {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: 0;
	background: #DDD;
	height: 30px;
	width: 30px;
	border-radius: 5px;
	border: none;
	margin-right: 15px;
	-webkit-transition: filter 0.2s linear;
	-moz-transition: filter 0.2s linear;
	-o-transition: filter 0.2s linear;
	transition: filter 0.2s linear;
}

input[type="checkbox"]:checked {
	background-image: -webkit-gradient(linear,left top,right top,from(#ff8a00),to(#da1b60));
    background-image: linear-gradient(to right,#ff8a00,#da1b60);
}

input[type="checkbox"]:hover {
	filter: brightness(90%);
}

input[type="checkbox"]:after {
  content: '';
  position: relative;
  left: 40%;
  top: 20%;
  width: 15%;
  height: 40%;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: none;
}

input[type="checkbox"]:checked:after {
  display: block;
}

input[type="checkbox"]:disabled:after {
  border-color: #7b7b7b;
}


@media screen and (max-width: 430px) {
  #login {
  	width: 100%;
  	left: 0;
  	top: 0;
  	margin: 0;
  	position: relative;
  	padding: 15px;
  }
  .s input[type=text], .s input[type=password], .s input[type=submit] {height: 40px; font-size: 16px;}
  label.checkbox {height: 20px; line-height: 24px; font-size: 16px;}
  input[type="checkbox"] {height: 20px; width: 20px;}
  #notification {font-size: 14px;}
  #notification .title, #login .title {font-size: 24px;}
  .s strong {font-size: 16px;}
}