p, input, button {
  font-family: Roboto, Arial;
}

body {
  margin: 0;
}

.container {
  display: flex;
}
.group {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 40%;
}

  .clicklancer {
    width: 100%;
  }

  .subtitle {
    text-align: center;
    font-size: 50px;
    margin-top: 0px;
  }

  .socials {
    width: 100%;
    display: inline-flex;
    justify-content: space-evenly;
  }

  .logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
  }

  .logo:hover {
    opacity: 0.7;
  }

  .logo:active {
    opacity: 0.5;
  }

.email-signup {
  background: linear-gradient(339deg, rgba(178,0,255,1) 21%, rgba(0,148,255,1) 82%);
  position: absolute;
  top: 0;
  left: 60%;
  bottom: 0;
  right: 0;
  padding-right: 25px;

}

  form {
    display: block;
  }

  .header, .info {
    text-align: right;
  }

  .header {
    color: white;
    font-size: 60px;
    margin-top: 15px;
    font-weight: 600;
  }

  .info {
    color: white;
    font-size: 28px;
    padding-left: 15px;
  }

  input, button, .success {
    float: right;
    margin-left: 100%;
  }

  input {
    padding-left: 25px;
    border: solid;
    border-color: grey;
    height: 50px;
    width: 80%;
    font-size: 25px;
    margin-bottom: 15px;
  }

  .success {
    color: white;
    font-size: 25px;
    margin: 0;
    margin-bottom: 15px;
  }

  button {
    background-color: black;
    color: white;
    border: none;
    height: 50px;
    width: 125px;
    font-size: 25px;
  }

  button:hover {
    background-color: rgb(51, 51, 51);
  }

  button:active {
    background-color: grey;
  }

@media screen and (max-width: 600px) {

  .container {
    display: block;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
  }

  .group, .email-signup{
    position: static;
  }

  .group {
    margin-bottom: 100px;
    margin-top: 50px;
    height: 10%;
  }

    .subtitle {
      font-size: 25px;
    }

    .logo {
      width: 50px;
      height: 50px;
      border-radius: 10px;
    }

  .email-signup {
    padding-right: 0px;
    padding-bottom: 15px;
    height: 1000px;
  }

    .header {
      padding-top: 15px;
      text-align: center;
      font-size: 40px;
    }

    .info {
      text-align: center;
      font-size: 20px;
      padding-left: 15px;
      padding-right: 15px;
      margin-bottom: 30px;
    }

    input, button, .success {
      display: flex;
      margin-left: 0%;
      float: none;
      justify-content: center;
      align-items: center;
    }

    input {
      height: 30px;
      font-size: 20px;
      width: 90%;
      margin: auto;
      padding-left: 0;
      margin-bottom: 15px;
    }

    button {
      margin: auto;
    }
}