.form-container {
    width: 400px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.5rem;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-sizing: border-box;
    border-radius: 20px;
    box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.08);
}
  
  .form-container button:active {
    scale: 0.95;
  }
  
  .form-container .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  
  .form-container .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #717171;
    font-weight: 600;
    font-size: 12px;
  }
  
  .form-container .form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
  }
  
  .form-container .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    resize: none;
    color: var(--text-primary);
    height: 96px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-color: rgba(255, 255, 255, 0.02);
    font-family: "Inter", sans-serif;
    transition: all 0.2s ease;
  }
  
  .form-container .form-group input::placeholder {
    opacity: 0.5;
  }
  
  .form-container .form-group input:focus {
    outline: none;
    border-color: rgba(72, 216, 213, 0.4);
    box-shadow: 0 0 0 3px rgba(72, 216, 213, 0.05);
  }
  
  .form-container .form-group textarea:focus {
    outline: none;
    border-color: rgba(72, 216, 213, 0.4);
    box-shadow: 0 0 0 3px rgba(72, 216, 213, 0.05);
  }
  
  .form-container .form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    color: white;
    font-weight: 500;
    width: 100%;
    background: rgba(72, 216, 213, 0.15);
    border: 1px solid rgba(72, 216, 213, 0.2);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    gap: 8px;
    margin-top: 0.5rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.2s ease;
  }
  
  .form-container .form-submit-btn:hover {
    background: rgba(72, 216, 213, 0.25);
    border-color: rgba(72, 216, 213, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(72, 216, 213, 0.1);
  }

/* Responsive Design for Contact Form */

/* Tablet styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .form-container {
    width: 90%;
    max-width: 500px;
    padding: 1.8rem 1.3rem;
    margin: 0 auto;
  }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
  .form-container {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1.5rem;
    font-size: 14px;
    gap: 1.5rem;
    margin: 2rem auto;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  }
  
  .form-container .form-group input,
  .form-container .form-group textarea {
    padding: 1rem;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .form-container .form-group textarea {
    height: 120px;
  }
  
  .form-container .form-submit-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    min-height: 50px;
  }
}

/* Small mobile styles (max-width: 480px) */
@media screen and (max-width: 480px) {
  .form-container {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1rem;
    font-size: 14px;
    gap: 1.3rem;
    border-radius: 20px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }
  
  .form-container .form-group input,
  .form-container .form-group textarea {
    padding: 1rem;
    font-size: 16px; /* Prevents zoom on iOS */
    border-radius: 15px;
    transition: all 0.2s ease;
    -webkit-appearance: none; /* Remove iOS styling */
    appearance: none; /* Standard property */
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .form-container .form-group input:focus,
  .form-container .form-group textarea:focus {
    transform: none; /* Remove scale on small screens */
    border-color: rgba(72, 216, 213, 0.5);
  }
  
  .form-container .form-group textarea {
    height: 110px;
    resize: vertical;
  }
  
  .form-container .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .form-container .form-submit-btn {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    border-radius: 15px;
    min-height: 52px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
  }
  
  .form-container .form-submit-btn:active {
    transform: scale(0.98);
  }
  
  .form-container .form {
    gap: 20px;
  }
}
  
  
  