* {
  transition: all 0.3s ease-in-out;
}

html, body
{
  width: 100%;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;

  margin: 0;
  padding: 0;

  background: #FFFFFF;

  font-family: "Inter", sans-serif;
}
body
{
  box-sizing: border-box;
  padding: 0 64px 64px 64px;
}
.wrapper
{
  width: 100%;
  max-width: 800px;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  margin: 0;
  padding: 0;

  box-sizing: border-box;
}
.captcha-form
{
  width: 100%;
}
.captcha-grid
{
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}
.btn
{
  cursor: pointer;
  height: 32px;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 12px;
  gap: 12px;
  border: 0;
  background-color: #171717;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}
.btn-red
{
  background-color: #ff4646;
}
.captcha-item
{
  text-align: center;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
}
.captcha-item img
{
  width: 100%;
  height: auto;
  display: block;
}
.selected
{
  border: 1px solid green;
  background-color: #e6ffe6;
}

.product-list
{
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;

  gap: 48px;
}
.product-list-item
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;

  box-sizing: border-box;
  padding: 24px;

  background: #4a6fa4;
  border: 1px solid #4a6fa4;

  text-decoration: none;

  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}
.product-list-item:hover
{
  transform: translateY(-6px);
}


.add-form
{
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 12px;

  background: #ffffff;
  border: 1px solid #f2f2f2;

  padding: 24px;

  box-sizing: border-box;
}
.add-form form
{
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  gap: 12px;

  box-sizing: border-box;
}

.h2
{
  font-size: 20px;
  font-weight: 500;
  color: #222222;
  margin: 0 0 24px 0;
}
a
{
  font-size: 16px;
  font-weight: 400;
  color: #009fff;
}
label
{
  display: block;

  font-size: 16px;
  font-weight: 400;
  color: #222222;
}
input[type="text"],
input[type="password"]
{
  display: block;

  width: 100%;
  height: 44px;

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;

  gap: 12px;

  background: #f2f2f2;
  border: 1px solid #f2f2f2;

  padding: 8px 6px;
  box-sizing: border-box;

  font-size: 16px;
  font-weight: 400;
  color: #222222;

  margin-bottom: 24px;
}


.product-item
{
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  border: 1px solid #f2f2f2;
  padding: 24px;
  margin-bottom: 10px;
}
.product-item h3
{
  font-size: 18px;
  font-weight: 500;
  color: #222222;
}


.ctext
{
  font-size: 18px;
  font-weight: 500;
  color: #222222;
}
.atext
{
  font-size: 18px;
  font-weight: 500;
  color: #4a6fa4;
}
.header
{
  width: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.header img
{
  width: 100%;
}
@media (min-width: 400px) and (max-width: 800px)
{
  body
  {
    padding: 48px;
  }
  .captcha-grid
  {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .product-list
  {
    grid-template-columns: repeat(2, 1fr);
  }

  .ctext
  {
    font-size: 22px;
    font-weight: 500;
    color: #222222;
  }
  .atext
  {
    font-size: 22px;
    font-weight: 500;
    color: #4a6fa4;
  }
}

@media (min-width: 0px) and (max-width: 399px)
{
  body
  {
    padding: 24px;
  }
  .captcha-grid
  {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .product-list
  {
    grid-template-columns: repeat(1, 1fr);
  }

  .ctext
  {
    font-size: 22px;
    font-weight: 500;
    color: #222222;
  }
  .atext
  {
    font-size: 22px;
    font-weight: 500;
    color: #4a6fa4;
  }
}

.products-list
{
  width: 100%;
}
