/* styles.css */

body {
    font-family: 'Cairo', sans-serif;
    background-color: #f9f9f9;
    color: #363636;
  }
  
  .hero.has-background {
    background: url('/assets/background.png') no-repeat center center;
    background-size: cover;
  }
  
  .box {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
  }
  
  textarea,
  input[type="number"] {
    direction: rtl;
  }
  
  .notification {
    border-radius: 10px;
    padding: 1.25rem;
    font-weight: 600;
    text-align: center;
  }
  
  button.button.is-link {
    background-color: #5c67f2;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  button.button.is-link:hover {
    background-color: #4a54e1;
  }
  
  @media screen and (max-width: 768px) {
    .box {
      padding: 1.5rem;
    }
  
    .hero {
      padding: 1rem;
    }
  }
  