@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

body {
  font-family: "Roboto Mono", sans-serif;
  background-color: #494093;
  color: #333;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: calc(90% + 0.25vw);
}
.outer-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5);
  padding: clamp(2vw, 3vw, 40px);
  margin: 20px;
  width: clamp(50vw, 85vw, 800px);
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.logo img {
  max-width: clamp(40%, 70%, 450px);
}
.tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.tagline img {
  width: calc(75% + 0.25vw);
  max-width: 300px;
}
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 5px;
}
.footer img {
  width: 98%;
}
.linkedin-link {
  margin: 60px 20px 20px 20px;
  text-align: center;
}
.linkedin-link a {
  color: #494093;
  text-decoration: none;
  font-weight: bold;
}
.linkedin-link a:hover {
  color: #F8AF02;
}
.contact-form {
  padding: 5px;
}
.contact-form h2 {
  text-align: center;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.form-group input,
.form-group textarea {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}
.form-group textarea {
  height: 150px;
  resize: vertical;
}
button {
  background-color: #494093;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}
button:hover {
  background-color: #F8AF02;
}
button:disabled { background: #aaa; cursor: not-allowed; }
.msg { margin-top: 16px; padding: 12px; border-radius: 6px; font-size: 0.95rem; }
.msg.ok  { background: #e6f4ea; color: #1e7e34; }
.msg.err { background: #fdecea; color: #c0392b; }
.hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }
