body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
}

.logo {
  width: 300px;
  height: auto;
}

.title {
  font-size: 2em;
  color: #287E9B;
}

.subtitle {
  font-size: 1.2em;
  color: #666;
  margin-top: 10px;
}

.contact {
  margin-top: 20px;
  font-size: 1em;
  color: #666;
}

.contact a {
  color: #287E9B;
  text-decoration: none;
}

.contact a:hover {
  color: #fe7527;
}

form input[type="email"] {
  padding: 10px;
  width: 60%;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

form button {
  padding: 10px 20px;
  background-color: #fe7527; 
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}


form button:hover {
  background-color: #287E9B;
}

.social-links {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

.social-links img {
  width: 40px;
  border-radius: 10px;
}

/* Add any other styles as needed */
