*
{
  font-family: 'Roboto', sans-serif;
}

body
{
  background-color: #ffffff;
}

@supports ( -webkit-touch-callout : none)
{
  body
  {
    background-attachment: scroll;
    background-position: center 100vh;
  }
}

div.head
{
  width: 100vw;
  margin: 2vw;
}

#logo
{
  width: 96vw;
  height: auto;
  top: 10px;
}

label
{
  margin-top: 12px;
  margin-bottom: 4px;
  display: block;
}

input, select, textarea
{
  border-radius: 4px;
  border: #999999 1px solid;
  width: 100%;
  padding: 4px 6px;
  font-sIze: 16px;
}

.button
{
  display: inline-block;
  width: auto;
  margin: 10px 0 10px 10px;

  cursor: pointer;
  text-align: center;
  display: inline-block;
  padding: 10px 15px;
  font-weight: 500;
  background-color: #07336f;
  border: 1px solid #07336f;
  border-radius: 4px;
  color: rgb(255, 255, 255);
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
}



a
{
  color: #07336f;
  text-decoration: none;
}

a:hover
{
  color: #1886d6;
}

.button:hover
{
  color: #ffffff;
  background-color: #1886d6;
}

#main
{
  padding-top: 0vw;
  width: 100vw;
  padding-bottom: 500px;
}

@media only screen and (orientation: landscape) and (min-width: 1024px)
{
  #main
  {
    padding-top: 200px;
    width: 1024px;
    margin: 0 auto;
    padding-bottom: 100px;
  }

  div.head
  {
    max-width: 960px;
    margin: 0 auto;
  }

  #logo
  {
    width: auto;
    height: 80px;
    top: 10px;
    position: absolute;
  }

}

@media only screen and (orientation: landscape) and (max-width: 1023px)
{

}