:root {
    --primary-color: #ff9800;
    --primary-hover: #e68900;
    --dropbox-hover: #fdaa2d;
    --gradient-1:#ee871a;
    --gradient-2:#f5a411;
    --text-color: #ffffff;
    --overlay-bg: rgba(0, 0, 0, 0.2);
    --shadow: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 0.75rem;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family:  'Poppins', sans-serif;
    background: url('../images/sailcascais.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
      h1, h2 {
      font-size: 1.7rem;
  margin-bottom: 15px;
  color: #222222;
  font-weight: 600;
    }
  
    p {
      margin-bottom: 1rem; /* or adjust as needed */
      margin-top: 0;
      font-size: 1rem;
      color: #333333;
    }
  
    form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
  
    label {
      font-size: 1.2rem;
      color: #333333;
    }