/* css/style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #0066c0;
  background-color: #f1f1f1;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background-color: #ffffff;
  border-bottom: 1px solid #dddddd;
}

.header img {
  height: 40px;
  margin: 10px;
}

.header nav {
  display: flex;
  align-items: center;
}

.header nav a {
  display: inline-block;
  margin: 0 20px;
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
}

.header nav a:hover {
  color: #0066c0;
}

.header nav a.active {
  color: #0066c0;
}

.main-content {
  margin: 20px;
  flex: 1;
}

.form-container {
  width: 400px;
  margin: 0 auto;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 20px;
}

.form-container h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.form-container label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  padding-top: 10px;
}

.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"] {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 8px;
  font-size: 14px;
}

.form-container {
  width: 400px;
  margin: 0 auto;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 20px;
  padding-right: 30px;
}

.form-container input[type="submit"]:hover {
  background-color: #0059b3;
}

.form-actions {
  margin-top: 20px;
}

.form-actions a {
  display: block;
  font-size: 14px;
  color: #0066c0;
  text-decoration: none;
  text-align: center;
}

.form-actions a:hover {
  color: #004f99;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  background-color: #ffffff;
  border-top: 1px solid #dddddd;
  text-align: center;
  padding: 20px;
}

.footer a {
  font-size: 14px;
  color: #0066c0;
  text-decoration: none;
  margin: 0 20px;
}

.footer a:hover {
  color: #004f99;
}

.footer img {
  height: 40px;
  margin: 10px;
}

.footer .social-media {
  display: flex;
  align-items: center;
}

.footer .social-media a {
  display: inline-block;
  margin: 0 10px;
  height: 32px;
}
