/*=============================================
=            Generic styling                  =
=============================================*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  position: relative;
}

body {
  overflow-x: hidden;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.form-control {
  display: block;
  width: 100%;
  background-color: #f9f9f9;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin-bottom: 24px;
}

.container {
  display: block;
  margin: auto;
  max-width: 40em;
  padding: 48px;
}

@media (max-width: 620px) {
  .container {
    padding: 0;
  }
}

.section {
  background-color: #FFFFFF;
  padding: 24px;
  color: #333;
}

.section a, .section a:visited, .section a:focus {
  color: #367889;
}

.logo {
  display: block;
  margin-bottom: 12px;
}

.logo__img {
  width: 100%;
  height: auto;
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
  padding: 6px 0;
}

.visible-ie {
  display: none;
}

.zero-bottom {
  margin-bottom: 0;
}

.zero-top {
  margin-top: 0;
}

.text-center {
  text-align: center;
}

/*=====  End of Section comment block  ======*/
