* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
}

.bg-image {
  background-image: url('../img/f01.jpg');
  height: 100vh;
}

.container {
  width: 90%;
  max-width: 1070px;
  margin: auto;
}

form {
  width: 80%;
  max-width: 400px;
  margin: auto;
  padding: 80px 0;
  /*overflow: hidden;*/
}

a {
    font-size: 15px;
    font-weight: bold;
   
}


.input-group {
  display: flex;
  flex-flow: row wrap;
  position: relative;
}

.input-group .icons {
  width: 35px;
  height: 35px;
  background-color: #4C94F6;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}


.input-group .form-control {
  flex-grow: 1;
  height: 35px;
  border: transparent;
  background-color: #fff;
  color: #757575;
  padding: 10px 15px;
  font-family: sans-serif;
  font-weight: lighter;
  outline: 0;
  margin-bottom: 10px;
}

.error {
  color: darkred;
}

.confirm {
    color: green;
}

.btn {
  width: 100%;
  cursor: pointer;
}

.btn-flat-green {
  border: transparent;
  height: 35px;
  background-color: #4C94F6;
  color: #fff;
  font-family: sans-serif;
  margin-bottom: 10px;
  font-weight: bold;
  outline: 0;
}

.login-link {
  text-align: center;
  margin: auto;
  display: block;
  color: black;
}

