/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'bayon', sans-serif;
}

body {
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    background-image: url(/img/gifAnkor.gif);
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.container {
    display: grid;
    grid-template-columns: 1fr 1fr;

}

h1 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-align: center;
}

form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}
.form-container {
  background: rgba(255, 255, 255, 0.2); /* translucent */
  backdrop-filter: blur(10px); /* frosted glass effect */
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 20px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
input, textarea, select {
  background: rgba(255, 255, 255, 0.85);
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Bayon', sans-serif;
  color: #000;
}

input::placeholder, textarea::placeholder {
  color: #666;
}


select, input[type="date"], input[type="tel"], input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

select:focus, input:focus {
    outline: none;
    border-color: #3498db;
    background-color: white;
}

label {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

button:active {
    background-color: #2471a3;
}

    .message-box {
      border: 1px solid #ccc;
      padding: 20px;
      border-radius: 10px;
      width: 600px;
      margin: auto;
    
    }
    .message-box h2 {
        margin-bottom: 25px;
    }
    textarea {
      width: 100%;
      height: 300px;
      padding: 8px;
      border-radius: 10px;
      box-sizing: border-box;
    }
    button {
      padding: 10px 20px;
      font-size: 16px;
      background: #4CAF50;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
    }
    button:hover {
      background: #45a049;
    }

/* Responsive design */
@media (max-width: 600px) {
    form {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    select, input, button {
        font-size: 0.9rem;
    }
}