
html {
  height: 100%;
  padding: 0;
  outline: 0 none;
}

body {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

a {
    outline: 0 none;
}

.page-background {
  background: linear-gradient(155.06deg, #0a75cd 34.82%, #3bdbab 100%) center bottom/cover no-repeat;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content-container {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
  text-align: center;
}

footer p {
  color: rgba(255, 255, 255, 0.6);
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:visited {
  color: white;
}

img {
  width: 100%;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0px;
  margin: 0px;
}

.wrap {
  max-width: 1440px;
  margin: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

#header-logo {
  width: 220px;
  opacity: 0.8;
  padding-top: 20px;
}

.white-box {
  background: #ffffff;
  border: 1px solid #d3e2ee;
  box-sizing: border-box;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.white-box h3 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.white-box h5 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.with-message {
  position: relative;
  padding-bottom: 60px;
}

.success-message {
  position: absolute;
  bottom: -1px;
  width: 100%;
  left: -1px;
  background: #3bdbab;
  border-radius: 0px 0px 20px 20px;
  border: 1px solid #3bdbab;
}

.success-message p {
  color: white;
  margin: 10px;
}

.success-message a {
  color: white;
}

.success-message a:visited {
  color: white;
}

.green-button {
  display: inline-block;
  background: #3bdbab;
  color: white !important;
  text-decoration: none;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 33px;
  padding: 8px 15px;
  font-weight: 600;
  font-size: 22.5px;
  transform: perspective(1px) translateZ(0);
  transition: transform 0.3s;
}

.green-button:hover {
  text-decoration: none;
  background: #2fd4a1;
  transform: scale(1.1);
}

.signup-login-switch {
  text-align: center;
}

.signup-login-switch p {
  color: rgba(255, 255, 255, 0.6);
}

.signup-login-switch a {
  color: white;
}

.signup-login-switch a:visited {
  color: white;
}

.create-account-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    .create-account-form button {
        margin: auto;
        margin-top: 20px;
    }

    .create-account-form label {
        width: 100%;
    }

.half-input {
    flex: 1;
}


@media (max-width: 768px) {
  .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .green-button {
    padding: 6px 20px;
    font-size: 16px;
  }

  .white-box {
    padding: 15px;
  }

  .with-message {
    padding-bottom: 80px;
  }
}