body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('foto-pettine.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    backdrop-filter: blur(5px); 
}

.form-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 60px; 
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px; 
    margin: auto;}

.form {
    display: flex;
    flex-direction: column;
}

.form h2 {
    margin-bottom: 30px; /* Increase spacing between title and inputs */
    text-align: center;
    font-size: 2em; /* Increase font size for the form title */
    color: #0F2C59;
}

input, button {
    margin-bottom: 25px; /* Increase spacing between inputs and button */
    padding: 15px; /* Increase padding for inputs */
    font-size: 1.2em; /* Increase font size for inputs */
    border: 1px solid #0F2C59;
    border-radius: 5px;
}

button {
    background-color: #DAC0A3;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.2em; /* Increase font size for button */
}

button:hover {
    background-color: #EADBC8;
}

/* Media Query for responsiveness */
@media (max-width: 768px) {
    .form-container {
        width: 80%;
    }
    input, button {
        width: 100%;
    }
}


.navbar {
   
    padding: 5px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar h1 {
    margin: 0;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: inline-block;
    margin-right: 20px;
}

.nav-links li:last-child {
    margin-right: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333; /* Change link color */
}


.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo,
  .footer-links,
  .footer-social {
    flex: 1 1 200px;
    margin-bottom: 30px;
  }
  
  .footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .footer-links ul,
  .footer-social ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li,
  .footer-social li {
    margin-bottom: 10px;
  }
  
  .footer-links a,
  .footer-social a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover,
  .footer-social a:hover {
    color: #ffd700; /* Change to desired hover color */
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
  }
  
  .footer-bottom p {
    font-size: 0.9rem;
    margin: 0;
  }
  