body {
    font-family: Arial, sans-serif;
    background-image: url('background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    min-height: 100vh;
}

nav {
    width: 15%;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

nav img {
    max-width: 250px;
    margin-bottom: 30px;
}

nav a {
    display: block;
    color: white;
    margin: 15px 0;
    text-decoration: none;
    font-weight: bold;
    background: none;
}

main {
    flex-grow: 1;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    margin: 70px;
    border-radius: 8px;
    text-align: center;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    color: white;
    background: none;
}


background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 8px;
  display: inline-block;
  text-align: left;
}

label {
  font-weight: bold;
  color: #fff;
}

input[type="text"], textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1em;
}

button[type="submit"] {
  background-color: #0078d4;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

button[type="submit"]:hover {
  background-color: #005fa3;
}


button {
  background-color: #0078d4;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 1.1em;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
  transition: background 0.2s;
}

button:hover {
  background-color: #005fa3;
