@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600);
* {
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: #f0f3f7;
  padding: 20px 20px 20px 0;
  border-radius: 25px;
  display: flex;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
}

form {
  display: flex;
  flex-direction: column;
  width: 250px;
  justify-content: space-around;
}

.main-img {
  background-image: url('images/header.jpg');
  background-size: cover;
  width: 300px;
  height: 500px;
  line-height: 450px;
  text-align: center;
  border-radius: 25px;
  padding: 25px;
  min-height: 10vh; 
}

h1 {
  color: #bf2ac9;
  margin-bottom: 20px;
}

h2 {
    margin: 0xp;
    padding: 0px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 2.5em;
  }

.wrapper p {
  font-size: 0.75rem;
  color: #2b2684;
  margin-bottom: 20px;
}
.pass-icon {
  display: flex;
  position: relative;
  width: 250px;
}
#email, #password {
  height: 40px;
  width: 250px;
  border-radius: 15px;
  padding-left: 15px;
  border: 1px solid #2b2684;
  margin-bottom: 25px;
  position: relative;
}

.pass-icon img {
  width: 25px;
  position: absolute;
  align-self: center;
  top: 27%;
  right: 0;
  margin-right: 10px;
  filter: opacity(0.3);
}

a {
  text-decoration: none;
  color: #2b2684;
  font-size: 0.75rem;
  text-align: right;
  margin-right: 15px;
}

#password {
  margin-bottom: 10px;
}

#login-btn {
  margin: 20px 0;
  height: 40px;
  border-radius: 15px;
  border: none;
  background-color: #bf2ac9;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.5s;
  cursor: pointer;
}

span {
  text-align: center;
  position: relative;
}

.register {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-btn {
  height: 25px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: bold;
  background-color: white;
  border: 1px solid #2b2684;
  border-radius: 10px;
  color: #2b2684;
  transition: 0.5s;
  cursor: pointer;
}

.register p {
  margin: 0 11px 0;
}

button:hover, #login-btn:hover {
  transform: scale(1.1);
}

input[type=checkbox] {
    display: inline-block;
    vertical-align: middle;
    margin: 1rem;
  }