html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.company-logo {
  max-width: 80px;
  margin: 0 auto 24px;
}

.company-logo img {
  width: 100%;
}

.box {
  margin: 0px auto;
  width: 100%;
  max-width: 290px;
  background: white;
  border-radius: 4px;
  box-shadow: rgba(60, 66, 87, 0.12) 0px 7px 14px 0px,
    rgba(0, 0, 0, 0.12) 0px 3px 6px 0px;
}

.box-inner {
  padding: 20px;
}

.box-title {
  display: block;
  font-size: 20px;
  line-height: 1;
  color: #252c3f;
  padding-bottom: 15px;
}

.box-message {
  font-size: 14px;
}

.box-countdown {
  font-size: 10px;
  color: #007bff;
  margin-top: 20px;
}

.box-form__field:not(:last-child) {
  padding-bottom: 24px;
}

.box-form label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
  color: #252c3f;
}

.box-form input {
  font-size: 14px;
  color: #252c3f;
  line-height: 1;
  padding: 8px 10px;
  width: 100%;
  min-height: 30px;
  border: unset;
  border-radius: 4px;
  outline-color: rgb(49 106 211 / 0.5);
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}

.box-form input[type="email"] {
  background-color: #eee;
}

.box-form__field .button {
  border: rgb(49, 106, 211);
  background-color: rgb(49, 106, 211);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  outline: none;
  border-radius: 4px;
  height: 32px;
}

.error {
  font-size: 10px;
  margin-top: 4px;
  color: red;
}