* {
  margin: 0px; 
  padding: 0px; 
  box-sizing: border-box;
}

html {
  background: #094074;
}

body {
  overflow: hidden;

  font-family: 'Roboto', sans-serif;
  font-family: Verdana, Arial, sans-serif;
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, #141e30, #094074);
  /* background: #094074; */
  /* background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#009ED2)); */
  /* background: -moz-linear-gradient(top, #000, #009ED2); */
  /* filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000', endColorstr='#009ED2'); */
}

a, a:active, a:hover {
  color: #fff;
  text-decoration: none;
}

.login_container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.login_container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.form-control {
  outline: none;
  border: none;
  font-family: Verdana, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  color: #333333;

  display: block;
  width: 100%;
  background: #FFFFFFAA;
  height: 40px;
  border-radius: 50px;
}

.form_container {
  width: 100%;
}

.form-group {
  padding-left: 15px;
  padding-right: 15px;
  /*border: 1px solid black;*/
}

.btn {
  font-family: Verdana, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #e0e0e0;

  width: 100%;
  height: 40px;
  border-radius: 25px;
  /* background: #333333; */
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;

  position: relative;
  z-index: 1;  
}

.btn-info {
  background-color: #00a4df;
  color: #e0e0e0;
  border: none;
}

.login {
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  width: 95%;
  margin: 0 auto;
}

.logo {
  /* padding-top: 80px; */
  /* text-align: center; */
}

.erro_container {
  height: 40px;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.vcenter {
  display: inline-block;
  vertical-align: middle;
  float: none;
  width: 100%;
}

.yellow-border {
  border: 1px solid yellow;
}

.phone-item {
  background-color: #fff; 
  padding: 20px; 
  margin-bottom:10px; 
  border-radius: 2px; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}