/* This line is to include bulma in the project */
@import 'bulma/css/bulma.css';

body {
  color: #ffffff;
  font-size: 16px;
  font-family: Arial, sans-serif;
  background-color: #086279;
  text-align: center;
  height: 100%;
  overflow: auto;
}

html {
  height: 100%;
  background-color:#272727;
  overflow: auto;
}

.title{
  color: #ffffff;
}

/* global style */

textarea,
input,
select {
  background-color: #d9d9d9;
  border: 1px solid #bbbbbb;
  padding: 2px;
  margin: 1px;
  font-size: 16px;
  color: #808080;
}


.container {
  margin-bottom: 100px;
}

a,
a:link,
a:visited,
a:active {
  color: #d3ffc8;
  text-decoration: none;
  font-size: 16px;
}

a:hover {
  border-bottom: 1px dotted #c1c1c1;
  color: #ffffff;
}

/* custom classes */

.hidden {
  display: none;
}

.phone-input {
  background-color: #d9d9d9;
  color: #000000;
  font-family: Arial;
  font-size: 20px;
  margin-bottom: 12px;
  padding: 10px 30px;
  border: 0;
  width: 250px;
  border-bottom: 3px solid #e2e2e2;
}

.phone-input:focus {
  border-bottom: 3px solid #eeeeee;
  outline: 0;
}

.submit-button {
  background-color: #006d0f;
  border: 1px solid #00550b;
  color: #ffffff;
  line-height: normal;
  font: size 12px;
}

.submit-button:hover {
  background-color: #00550b;
  color: #ffffff;
  border: 1px solid #003f08;
}

.submit-button:active {
  top: 1px;
}

#main-logo {
  margin: 16px 0;
}

#spinner {
  display: block;
  margin: 32px auto;
  pointer-events: none;
  width: 5em;
  height: 5em;
  border: 0.5em solid transparent;
  border-top-color: #eee;
  border-radius: 50%;
  animation: loadingspin 1s linear infinite;
}

@keyframes loadingspin {
  100% {
    transform: rotate(360deg);
  }
}
