

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --color-black: #131313;
  --color-white: #ffffff;
  --color-blue: #00B7DF;
  --color-gray-light: #EEEEEE;
  --color-green: #00C1AF;
  --color-green-accent: #5FDCD4;
  --color-black: #212727;
  --color-black-green: #445656;
  --color-gray-green: #83A9A9;
  --color-white-green: #CFE9E9;
  --color-almost-white: #E5F2F2;
}

html {
  color: var(--color-black);
  font-size: 1em;
  line-height: 1.4;
  font-family: 'Nunito Sans', sans-serif;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}


ul,li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.hidden,
[hidden] {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

a,
a:visited {
  color: var(--color-green);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--color-green);
}

a:hover {
  color: var(--color-green-accent);
}

h1,h2,h3,h4,h5,h6 {
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;

}


body {
  background-color: #eef8f8;
}

.logo {
  margin-top: 32px;
}

.component {
  padding: 128px 0;
}

.component-form {
  display: flex;
}

.component-form__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  margin-right: auto;
  color: var(--color-black-green);
}

.component-form__image {
  flex: 0 0 50%;
}

.component-form__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.component-form__content {
  flex: 0 0 50%;
  background-color: white;
}

.component-form__wrapper {
  padding: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.component-form__description {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black-green);
}


@media only screen and (max-width: 820px) {


  .container {
    padding: 16px;
  }

  .component {
    padding: 24px 0;
  }

  .component-form__content {
    flex: 0 0 100%;
    order: 1;
  }

  .component-form__wrapper {
    flex: 0 0 100%;
    padding: 0 24px;
  }

  .component-form__image  {
    order: 2;
  }

  .component-form__image img {
    display:none;
  }

  .component-form {
    display: flex;
    flex-direction: column;
  }

}

@media only screen and (max-width: 420px) {
  .component-form__image img {
    height: 100px;
  }
}

h1 {
  margin-bottom: 16px;
}


.form {
  width: 100%;
}

.form .form-item {
  margin-bottom: 16px;
  position: relative;

}

.form .material-icons {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 8px; /* Distance from the left */
  transform: translateY(-50%); /* Ensure it's perfectly centered */
  pointer-events: none; /* Makes the icon non-interactive */
  color: var(--color-gray-green);
  font-size: 16px;
}

.form .form-data {
  font-size: 13px;

}

.form .form-item--checkbox {
  display: flex;
  align-items: center;
}

.form .form-item.form-item--checkbox input[type=checkbox] {
  margin-right: 8px;
}

.form .form-item__signup {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 13px;
}

.form .form-item__signup a {
  display: inline-block;
  border-bottom: 1px solid var(--color-green);
  font-weight: 600;
}


.flex-row {
  display: flex;
  justify-content: space-between;
}

.form .form-item input[type=text],
.form .form-item input[type=email],
.form .form-item input[type=password],
.form .form-item input[type=number]{
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 3px;
  border: 1px solid #ccc;
  padding-left: 32px;
}

.form .form-item input[type=email],
.form .form-item input[type=password] {

}

.form .form-item input[type=checkbox] {
  margin: 0;
}


.form input::placeholder,
.form input::-webkit-input-placeholder{
  color: var(--color-gray-green);
}


.button {
  display: block;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-black) !important;
  background-color: var(--color-green);
  text-align: center;
  text-decoration: none !important;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.5s all !important;
}

.button:hover {
  background-color: var(--color-green-accent);
  color: white;
}
