@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #798187;
  background-color: #f2f3f3;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

button {
  font-family: "Poppins", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.cb-footer {
  color: #fff;
  background-color: #e10000;
  display: flex;
  justify-content: center;
  padding: 16px;
  margin-top: auto;
}
@media screen and (max-width: 576px) {
  .cb-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
  }
}

.cb-input {
  margin-bottom: 20px;
}
.cb-input__input {
  display: block;
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #798187;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d9d9d9;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cb-input__input:focus {
  border-color: #8f8080;
  outline: 0;
  box-shadow: 0 0 1px 1px rgba(133, 0, 0, 0.1490196078);
}
.cb-input__input:disabled {
  background-color: #eff2f7;
  opacity: 1;
}
.cb-input__error {
  color: #f46a6a;
  font-size: 80%;
  font-weight: 400;
}
.cb-input_invalid {
  border-color: #f46a6a;
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f46a6a'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f46a6a' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 18px 18px;
}
.cb-input_invalid:focus {
  border-color: #f46a6a;
  box-shadow: 0 0 0 1.5px rgba(244, 106, 106, 0.2509803922);
}
.cb-input_hidden {
  visibility: hidden;
}

.cb-login-form {
  width: 100%;
  margin: 32px auto;
  padding: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 5px 5px 20px 0 rgba(133, 0, 0, 0.1490196078);
}
@media screen and (max-width: 576px) {
  .cb-login-form {
    margin: 20px auto;
    padding: 24px;
  }
}

.cb-button {
  display: block;
  width: 100%;
  padding: 8px;
  background-color: #e10000;
  color: #fff;
  outline: none;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.cb-button:hover {
  background-color: #c90303;
  border-color: #c90303;
}
.cb-button:focus {
  background-color: #c90303;
  border-color: #c90303;
  box-shadow: 0 0 1px 1px rgba(133, 0, 0, 0.1490196078);
}
.cb-button:disabled {
  opacity: 0.65;
  color: #fff;
  background-color: #e10000;
  cursor: auto;
}

.cb-error {
  width: 100%;
  margin: 32px auto;
  padding: 32px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 5px 5px 20px 0 rgba(133, 0, 0, 0.1490196078);
}
.cb-error__wrapper {
  padding: 48px 24px 24px;
  display: flex;
  flex-direction: column;
  max-width: 450px;
  margin: auto;
}
.cb-error__message {
  width: 100%;
  text-align: center;
  margin-bottom: 24px;
}

.cb-body {
  width: 100%;
}
.cb-body__form-wrapper {
  padding: 48px 24px 24px;
  display: flex;
  flex-direction: column;
  max-width: 450px;
  margin: auto;
}
@media screen and (max-width: 576px) {
  .cb-body__form-wrapper {
    padding: 12px;
  }
}
.cb-body__title {
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  color: #000;
  margin-top: 32px;
}
@media screen and (max-width: 576px) {
  .cb-body__title {
    font-size: 20px;
    margin-top: 18px;
  }
}
.cb-body__info {
  text-align: center;
  font-style: italic;
  font-weight: 300;
}
@media screen and (max-width: 576px) {
  .cb-body__info {
    line-height: 1.2;
  }
}
.cb-body__logo-wrapper {
  display: flex;
  justify-content: center;
}
.cb-body__logo {
  max-width: 100%;
}
@media screen and (max-width: 576px) {
  .cb-body__logo {
    max-height: 72px;
  }
}