/* === Reset (Unchanged) === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

form * {
  border: none;
  outline: none;
  font: inherit;
  background-color: transparent;
}

button {
  border: none;
  font: inherit;
  background-color: transparent;
  cursor: pointer;
}

ul {
  list-style: none;
}

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

img {
  max-width: 100%;
}

/* === Custom Properties === */
:root {
  --font-family: "Inter", sans-serif;
  --font-size-24: 1.5rem;
  --font-size-16: 1rem;
  --font-size-14: 0.875rem;

  --black: #000;
  --dark-gray: #343a40;
  --blue: #0d6efd;
  --pink: #ff6b81;
  --green: #20c997;
  --beige: #fdfcf9;
  --white: #ffffff;

  --green-shadow: 0 6px 12px rgba(32, 201, 151, 0.3);
  --blue-shadow: 0 6px 12px rgba(13, 110, 253, 0.3);
  --pink-shadow: 0 6px 12px rgba(255, 107, 129, 0.3);
  --black-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

  --space-4: 0.25rem;
  --space-8: 0.5rem;
  --space-16: 1rem;
  --space-24: 1.5rem;
  --space-32: 2rem;
  --space-48: 3rem;

  --radius-8: 0.5rem;

  --input-height: 45px;
}

/* === Base Styles === */
html, body {
  height: 100%;
}

body {
  background-color: var(--beige);
  font-family: var(--font-family);
  color: var(--dark-gray);
  line-height: 1.6;
}

.max-width-container {
  max-width: 1232px;
  margin-inline: auto;
  padding-inline: var(--space-16);
}

/* === Utility Classes === */
.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.height-full {
  height: 100%;
}

.text-center {
  text-align: center;
}

.cursor-pointer {
  cursor: pointer;
}

.white-background {
  background-color: var(--white);
}

.blue-background {
  background-color: var(--blue);
  color: white;
}

.pink-background {
  background-color: var(--pink);
  color: white;
}

.green-background {
  background-color: var(--green);
  color: white;
}

/* === Shared Button Styles === */
.button {
  border: 1px solid var(--dark-gray);
  border-radius: var(--radius-8);
  box-shadow: var(--black-shadow);
  transition: all 0.3s ease;
  background-color: var(--white);
  color: var(--dark-gray);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.regular-button {
  font-weight: 600;
  padding-inline: var(--space-16);
  height: var(--input-height);
  font-size: var(--font-size-14);
}

.circle-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: var(--space-8);
}

.circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

/* === Form Styles === */
.form {
  margin-top: var(--space-32);
}

.label {
  font-weight: 600;
  font-size: var(--font-size-16);
  display: inline-block;
  margin-top: var(--space-16);
}

.label:first-child {
  margin-top: 0;
}

.secondary-label {
  display: block;
  font-weight: 500;
  font-size: var(--font-size-14);
  margin-top: var(--space-16);
  color: var(--dark-gray);
  opacity: 0.8;
}

.input,
.textarea-input,
.status-select {
  border: 1.5px solid #ced4da;
  border-radius: var(--radius-8);
  width: 100%;
  padding: var(--space-16);
  margin-top: var(--space-16);
  background-color: #fff;
  transition: border-color 0.3s;
}

.input:focus,
.textarea-input:focus,
.status-select:focus {
  border-color: var(--blue);
}

.input,
.status-select {
  height: var(--input-height);
}

.textarea-input {
  resize: none;
  min-height: 120px;
}

/* === Status Dropdown === */
.status-select .arrow-icon {
  transform: rotate(270deg);
  margin-bottom: var(--space-8);
}

.status-dropdown {
  border: 1.5px solid #ced4da;
  border-radius: var(--radius-8);
  margin-top: var(--space-4);
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
  background-color: white;
  box-shadow: var(--black-shadow);
}

.status-dropdown.hide {
  display: none;
}

.status-dropdown .radio-label {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  cursor: pointer;
  font-size: var(--font-size-14);
}

/* CTA Button */
.form .cta-button {
  margin-top: var(--space-32);
  background-color: var(--blue);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  height: var(--input-height);
  border-radius: var(--radius-8);
  transition: background-color 0.3s;
}

.form .cta-button:hover {
  background-color: #0b5ed7;
}

/* === Media Queries === */
@media (min-width: 768px) {
  .divided-inputs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--space-16);
  }
}
