html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
}

div {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 120%;
  box-sizing: border-box;
}

.overall-container {
  max-width: 626px;
  padding: 20px;
}

.lock {
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
}

.header-container {
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;

  .header-title {
    font-size: 40px;
    font-weight: 700;
    color: #37352F;
  }

  .header-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #64748B;
  }
}

.form-container {
  gap: 30px;
  max-width: 482px;
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 30px;

  .password-input-group {
    align-items: start;
    width: 100%;
    gap: 8px;

    .password-label {
      font-size: 18px;
      color: #37352F;
    }

    .password-field {
      width: 100%;
      border: 1px solid #D9D9D9;
      border-radius: 8px;
      font-size: 18px;
      padding: 11px;
      box-sizing: border-box;
    }
  }

  .enter-submit-btn {
    justify-content: center;
    width: 100%;
    height: 40px;
    border-radius: 8px;
    font-size: 16px;
  }

  .enter-submit-btn-disabled {
    color: #F5F5F5;
    background-color: #8B8B8D;
    border: 1px solid #8B8B8D;
    &:hover {
      cursor: not-allowed;
    }
  }

  .enter-submit-btn-enabled {
    color: #F5F5F5;
    background-color: #37352F;
    border: 1px solid #37352F;
    &:hover {
      cursor: pointer;
    }
  }
}

.sticky-button {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  a {
    color: #37352F;
    background-color: white;
    border: 1px solid #64748B;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    &:hover {
      transform: scale(1.05);
      cursor: pointer;
    }
  }
}
