/* background overlay */
/* Layout */
.collection-layout {
  display: flex;
  min-height: 100vh;
  background-color: var(--bg-color);
}

.collection-main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card */
.collection-card {
  background-color: #ffffff;
  padding: 40px 50px;
  border-radius: 20px;
  width: 520px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Form */
.collection-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Form rows */
.form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  column-gap: 20px;
}

.form-row-checkbox {
  grid-template-columns: 160px auto;
}

/* Labels */
.form-label {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* Inputs */
.collection-form input[type="text"],
.collection-form textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: 2px solid #ccc;
  font-size: 16px;
  width: 100%;
}

.collection-form textarea {
  resize: none;
  height: 48px;
}

/* Checkbox */
.collection-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* Button */
.submit-button {
  margin-top: 10px;
  background-color: var(--side-nav-bg-color);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
}

.submit-button:hover {
  background-color: var(--side-nav-bg-color);
}
