.cs-form {
  background: white;
  color: #324154;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 0 12px 2px rgba(255, 255, 255, 0);
  width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 720px) {
  .cs-form {
    width: 100%;
  }
}
.cs-form .col {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.cs-form .input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-form .input-group label {
  color: #587294;
  font-size: 12px;
  padding: 4px;
}
.cs-form input,
.cs-form textarea,
.cs-form select {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #b3b3b3;
  outline: 0;
  background-color: white;
  padding: 0.75rem 1rem;
  color: #324154;
}
.cs-form select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='50' viewBox='0 0 24 37.5' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}
.cs-form input:focus,
.cs-form textarea:focus,
.cs-form select:focus {
  border-color: #27c1eb;
}
.cs-form .sign {
  display: block;
  width: 100%;
  background-color: #27c1eb;
  padding: 0.75rem;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.5s ease;
}
.cs-form .sign:hover {
  transform: translateY(-5%);
  background-color: #13a4cc;
}
.cs-form .sign:active {
  transform: translateY(5%);
  background-color: #0f7f9d;
}
@media screen and (max-width: 580px) {
  .cs-form {
    min-width: 90vw;
  }
  .cs-form .col {
    flex-direction: column;
  }
}
