body {
    background: url(../images/login.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


.logo{
  max-height: 60px;
  max-width: 200px;
  margin: 0 auto;  
}


.loginmodal-container input[type="text"], input[type="password"] {
    height: 70px;
    background-color: #222222;
    color: #fff;
    font-size: 3.014285714em;
    padding: 0.3em 0.45em;
    margin-bottom: 10px;
}


.calculator__keysr > * {

    padding: 0.6em 0.9em !important;
    border: 0 !important;
    font-size: 2.2em !important;
    font-weight: 600!important;

}

.loginmodal-submit {
    margin-top: 10px;
    height: 70px;
    font-family: 'Lato', 
    sans-serif!important;
    font-weight: 600!important;

}

 /* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 100%; /* Set a default minimum width */
  background-color: #ff3333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 0; /* Center the snackbar */
  bottom: 0px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 6s;
  animation: fadein 0.5s, fadeout 0.5s 6s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: -30px; opacity: 0;}
  to {bottom: 0; opacity: 1;}
}

@keyframes fadein {
  from {bottom: -30px; opacity: 0;}
  to {bottom: 0; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 0; opacity: 1;}
  to {bottom: -30px; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 0; opacity: 1;}
  to {bottom: -30px; opacity: 0;}
} 