/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f4f6f8; /* soft background for app feel */
  color: #1a1a1a;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  margin-top: 50px;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* ========== HEADER SECTION ========== */
section img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

section h1 {
  font-size: 1.6rem;
  color: #0d3f91; /* OVTech blue */
  margin-bottom: 25px;
}

/* ========== FORM STYLING ========== */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

input[type="text"] {
  padding: 14px 16px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
}

input[type="text"]:focus {
  border-color: #0d3f91;
  box-shadow: 0 0 8px rgba(13, 63, 145, 0.3);
}

button {
  padding: 14px;
  font-size: 1rem;
  color: #fff;
  background: #0d3f91;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #0652c5;
  transform: translateY(-2px);
}

/* ========== PARAGRAPHS ========== */
p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}

/* ========== FOOTER ========== */
footer {
  background: #0d3f91;
  color: #fff;
  text-align: center;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 15px 10px;
  position: fixed;
  bottom: 0;
  left: 0;
}

footer p {
  margin-bottom: 10px;
  color: white;
  font-size: 0.9rem;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  padding-top: 5px;
}

footer .social-icons li a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

footer .social-icons li a:hover {
  color: #ffd700;
  transform: translateY(-2px);
}

/* ========== MOBILE APP FEEL ADJUSTMENTS ========== */
body,
html {
  overflow-x: hidden;
}

.container {
  border-radius: 25px;
  padding: 35px 20px;
  margin-top: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

input[type="text"],
button {
  font-size: 1.1rem;
  border-radius: 15px;
}

/* ========== REMOVE WEBSITE-LIKE SCROLL EFFECT ========== */
html {
  scroll-behavior: smooth;
}

@media (max-width: 450px) {
  .container {
    margin-top: 0px;
    padding: 30px 15px;
    border-radius: 0px;
  }

  section img {
    width: 90px;
    height: 90px;
  }

  section h1 {
    font-size: 1.4rem;
  }

  input[type="text"],
  button {
    font-size: 1rem;
    padding: 12px;
  }

  footer {
    padding: 12px 5px;
  }
}
