body {
    margin: 0;
    padding: 0;
    background-color: #333336;
    font-family: 'Inconsolata', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .container {
    background-color: rgba(233, 230, 214, 0.8);
    max-width: 600px;
    width: 90%;
    padding: 2rem;
    margin: 1rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .success-parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  img.logo {
    max-width: 180px;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight:100;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  h2 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  h3 {
    margin:0;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #ffffff;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  input[type="text"],
  input[type="email"] {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
  }

  .button-flat {
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 2px 4px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 0.025em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  }
  
  .button-flat:hover {
    background-color: #1c1c1e;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  
  .button-flat:active {
    background-color: #000000;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(1px);
  }
  
  

  .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    text-transform: uppercase;
    margin-top: 1rem;
  }
  
  .form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    transform: scale(1.1);
    cursor: pointer;
  }
  
  .form-checkbox a {
    font-weight: bold;
    text-decoration: underline;
  }
  
  .form-checkbox u {
    text-decoration: underline;
    font-weight: bold;
  }

  .button-link {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: #000000;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: background 0.2s ease, transform 0.1s ease;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05), 0 2px 4px rgba(0, 0, 0, 0.15);
    margin-top:0.5rem
  }
  
  .button-link:hover {
    background-color: #1c1c1e;
  }
  
  .button-link:active {
    background-color: #000000;
    transform: translateY(1px);
  }

  .section-bubble {
    position: absolute;
    padding: 1rem;
  }
  .section-bubble.clothing {
    top: 0;
    left: 0;
  }

  .section-bubble.barbers {
    bottom: 0;
    right: 0;
    text-align: right;
  }

  