/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
/*
ol, ul {
	list-style: none;
}
*/
ol {
  list-style: numeric;
}
ul {
  list-style: disc;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
html {
  font-size: 12px;
}
h1 {
  font-size: 3rem;
  width: 100%;
  text-align: center;
}
h3 {
  margin-top: 1rem;
}
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-family: Ubuntu, Arial, sans-serif;
  font-size: 1.5rem;
  /*background-color: #3c484e;*/
  line-height: 1.5;
}
input[type="email"],
input[type="password"],
input[type="text"] {
  font-size: 1.5rem;
  padding: 0.5rem;
  background-color: white;
  color: black;
  font-weight: 500;
  border: 1px solid black;
  width: 100%;
}
.master-grid {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  display: grid;
  grid-gap: 0rem;
  grid-template-columns: 1fr;
  grid-template-areas: "login-box";
}
.master-grid .login-box {
  padding: 1.5rem;
  display: block;
  grid-area: login-box;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.master-grid .login-box button,
.master-grid .login-box input[type="submit"] {
  border-radius: 5px;
  margin-top: 1rem;
  padding: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  font-size: 1.5rem;
  font-family: "Ubuntu";
}
.master-grid .login-box input[type="submit"]:hover {
  background-color: white;
  color: #4CAF50;
}
.master-grid .login-box input[type="submit"].success {
  background-color: #4CAF50;
  /* Green */
  color: white;
  border: 1px solid #4CAF50;
  /* Green */
}
.master-grid .login-box input[type="submit"]:hover.success {
  color: white;
  /* Green */
  background-color: #3d8b40;
}
.master-grid .login-box button.primary,
.master-grid .login-box input[type="submit"].primary {
  background-color: #0275d8;
  /* Green */
  color: white;
  border: 1px solid #0275d8;
  /* Green */
}
.master-grid .login-box button:hover.primary,
.master-grid .login-box input[type="submit"]:hover.primary {
  color: white;
  background-color: #025aa5;
}
@media screen and (min-width: 400px) {
  .master-grid {
    grid-template-rows: 100px;
    grid-template-columns: 1fr 400px 1fr;
    grid-template-areas: ".     .     ." ". login-box .";
  }
}
/*# sourceMappingURL=login.css.map */