
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-size: 1rem;
  line-height: 1.65;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #fff 50%, #87c358 50%);
  color: #fff;
}

/*Main Styles*/

.uc__wrapper {
  height: 100vh;
  display: flex;
  justify-content: space-between;
}

.uc__details {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  padding: 0 4rem;
  align-items: flex-start;
  justify-content: center;
}

.uc__art {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uc__art img {
  width: 70%;
}

.title {
  display: inline-block;
  font-size: 40px;
  position: relative;
  color: #87c358;
  margin-bottom: 1rem;
}

.title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #000;
  width: 140px;
}

.intro {
  font-size: 15px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #000;
}

.uc__description {
  margin-bottom: 2rem;
  line-height: 1.77;
  color: #000;
}

/* .uc__subscribe {
  background-color: #2b9eea;
  padding: 1.5rem;
  width: 85%;
  border-radius: 3px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
} */

.uc__subscribe h3 {
  font-weight: normal;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.uc__form {
  position: relative;
}

.uc__form input {
  font-family: inherit;
  outline: none;
  font-size: 90%;
  padding: 10px 1rem;
  border: none;
  display: block;
  border-radius: 2px;
}
.uc__logo{
  width: 200px;
  margin-bottom: 1rem;
}

.uc__form .email {
  width: 100%;
  background-color: #ecf0f1;
}

.uc__form .submit {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #2b9eea;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color .22s ease;
}

.uc__form .submit:hover {
  background-color: #2b9eea;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1rem;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #fff;
  }
  
.uc__art img {
  width: 0%;
}
}