body {
  background-color: #343434;
  display: flex;
  height: 100vh;
  margin: 0;
  width: 100%;
}

.container {
  width: 100%;
}

.email-field {
  height: 3rem;
  border: none;
  border-radius: 0.5rem;
  padding-left: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  outline: none;
}

.model-container {
  width: 100%;
  min-height: 32rem;
  display: flex;
  justify-content: center;
}

.button-container {
  margin-left: 1rem;
  display: "flex";
  flex-grow: 1;
}
.button-container button {
  width: 100%;
  height: 3rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  color: #000000;
  background-color: #04ff80;
  border: 2px solid #d1e3eb;
  outline: none;
}
.button-container button:hover {
  cursor: pointer;
  color: #d1e3eb;
  background-color: #343434;
}

.logo-section {
  max-width: 25rem;
  max-height: 25rem;
  display: flex;
  justify-content: center;
}

.text-section {
  color: #ffffff;
  font-family: sans-serif;
  text-align: center;
}

/* Mobile Phones (575px and below) */
@media (max-width: 575px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .left-column {
    padding: 1rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
  }
  .right-column {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
  .logo {
    width: 100%;
  }
  .left-column-inner {
    max-width: 35rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .subscribe-section {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .button-container {
    margin-left: 0rem;
    margin-top: 1rem;
    display: "flex";
    flex-grow: 1;
  }

  .text-section {
    color: #ffffff;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
  }
  .success {
    color: #ffffff;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2rem;
  }
}

/* Landscape Tablets and Small Desktops (576px to 767px) */
@media (min-width: 576px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .left-column {
    padding: 1rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
  }
  .right-column {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
  .logo {
    width: 100%;
  }
  .left-column-inner {
    max-width: 35rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }

  .subscribe-section {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .button-container {
    margin-left: 0rem;
    margin-top: 1rem;
    display: "flex";
    flex-grow: 1;
  }
}

/* Tablets (768px to 991px) */
@media (min-width: 768px) {
  .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .left-column {
    padding: 1rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
  }
  .right-column {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
  .logo {
    width: 100%;
  }
  .left-column-inner {
    max-width: 35rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }
  .text-section {
    margin-bottom: 2rem;
  }
  .subscribe-section {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .button-container {
    margin-left: 0rem;
    margin-top: 1rem;
    display: "flex";
    flex-grow: 1;
  }
}

/* Desktops (992px to 1199px) */
@media (min-width: 992px) {
  .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .left-column {
    width: 50%;
    padding: 2rem;
    display: flex;
    flex-grow: 1;
  }
  .right-column {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-grow: 1;
    align-items: center;
  }
  .logo {
    width: 100%;
  }
  .left-column-inner {
    max-width: 35rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }
  .text-section {
    text-align: center;
  }
  .subscribe-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  .button-container {
    margin-left: 1rem;
    margin-top: 0rem;
    display: "flex";
    flex-grow: 1;
  }
  .email-field {
    width: 100%;
  }
}

@media (min-width: 1500px) {
  .left-column {
  }
}
