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

html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  padding: 1px 0;
  height: 100%;
  width: 100%;
  background-image: url("../img/oirealtor-noticias-vivir-en-barcelona-ciudad-noche.jpg");
  background-size: cover;
  color: #fff;
}

#login {
  max-width: 330px;
  min-height: 500px;
  margin: 10% auto;
  background-color: rgba(10, 10, 10, 0.8);
  position: relative;
}

.login-icon-field {
  height: 250px;
}
.login-icon-field h1 {
  position: absolute;
  top: 10%;
  left: 10%;
  font-size: 80px;
}

.login-icon {
  margin: 60px 65px;
}

.login-form {
  padding: 8px 20px 20px;
  height: 120px;
  width: 100%;
}

.row {
  font-size: 20px;
}
.username-row {
  position: relative;
  height: 40px;
  border-bottom: 1px solid;
  margin-bottom: 10px;
}

.password-row {
  position: relative;
  height: 40px;
  border-bottom: 1px solid;
}

.password-icon,
.user-icon {
  margin: 5px;
}

input {
  width: 195px;
  height: 30px;
  margin: 5px 0;
  background: transparent;
  border: none;
  color: white;
}

input:focus,
button:focus {
  outline: none;
}

button {
  display: block;
  width: 240px;
  height: 40px;
  padding: 0;
  margin: 10px 20px 10px;
  font-weight: 700;
  color: #fff;
  background-color: #22c08a;
  border: none;
  border-radius: 20px;
  transition: background-color 0.1s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

button:hover {
  background-color: #26d69a;
}

button:active {
  background-color: #1eaa7a;
}