    :root {
        --page-max: 30rem;
        --card-radius: 1.6rem;
        --stack-offset: 1.6rem;
        --photo-size: clamp(5rem, 20vw, 6.8rem);
        --capture-size: clamp(4rem, 16vw, 5rem);
        --blue: #2948c7;
        --blue-soft: #dce4ff;
        --bg: #eef1f6;
        --text: #1f2a3a;

        --page-bg: #E3E6F2;
        --card-bg: #dfe4f4;
        --label-color: rgba(225, 64, 0, 1);
        --text-color: #7a808c;
        --title-color: #2b3445;
        --accent-orange: #e45a07;
        --accent-orange-dark: #cf4d00;
        --accent-blue-soft: #e8eeff;
        --accent-blue-text: #6f8df7;
        --white: #ffffff;
    }

    

   * {
      box-sizing: border-box;
    }

body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
    }

.page {
    display: flex;
    width: min(100%, 800px);
    /* width: 25.125rem; */
    /* height: 50.9rem; */
    min-height: 100dvh;
    margin: 0 auto;
    padding: 1rem;
    flex-direction: column;
    /* gap: 11.25rem; */
    background: var(--page-bg);
}
 /* .page-title {
      margin: 0 0 1.5rem 0;
      display: flex; 
      gap: 1rem;  
      font-size: clamp(1.5rem, 5vw, 2rem);
      font-weight: 500;
    }

.page-title h1 {
    margin: 0;
    font-family: 'JetBrains Sans', sans-serif;
    font-size: clamp(2rem, 6vw, 3.25rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #1B2632;
} */

.page-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.page-title h1 {
  margin: 0;
  font-family: 'JetBrains Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 7vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #3f6df6;
  font-size: clamp(1.35rem, 5vw, 1.8rem);
  line-height: 1;
}

.form-action {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

/* .preview-btn {
  width: 100%;
  min-height: 69px;
  padding: 24px 16px;
  border: none;
  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-family: 'JetBrains Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 21px;
  letter-spacing: -0.32px;
  text-align: center;

  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease;
}
  
*/

.preview-btn {
  width: 100%;
  /* max-width: 26rem; */
  min-height: 4rem;
  /* margin: 1.35rem auto 0; */
  margin: -0.65rem auto 0;

  border: none;
  border-radius: 1.5rem;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.96);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  padding: 1rem 1rem;
  box-shadow: var(--shadow-soft);

  font-family: 'JetBrains Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;

  cursor: pointer;
  transition: opacity 0.15s ease, background 0.15s ease, transform 0.15s ease;
}


.edit-btn {
  background: #ffffff;
  color: #1B2632;
  box-shadow: -2px 2px 8px 0px #00000014;
}
.edit-btn {
  background: #ffffff;
  color: #1B2632;
  box-shadow: -2px 2px 8px 0px #00000014;
}

.submit-btn {
  background: #263A99;
  color: rgba(255,255,255,0.96);
  box-shadow: -2px 2px 8px 0px #00000052;
}

.submit-btn:disabled {
  background: var(--preview-disabled);
  color: rgba(255,255,255,0.72);
  cursor: default;
}

.preview-btn:disabled {
    background: var(--preview-disabled);
    color: rgba(255,255,255,0.72);
    cursor: default;
}