/* Body Styles */
body {
  font-family: 'Lato', sans-serif;
  background-color: steelblue;
  margin: 0;
}

/* Page Container Styles */
/* Ensure the parent element of the container is set to display flex */
.parent {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure the parent takes full viewport height */
    background-color: #f5f5f5; /* Optional: background color for the parent */
}

.container {
    max-width: 400px;
    margin: 0 auto; /* Center horizontally */
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* Form Styles */
form {
  color: #394263;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
input[type="password"],
button {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #394263;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: #293845;
}

a {
  color: #394263;
  text-decoration: none;
}

/* Header Styles */
header {
  background-color: #394263;
  color: white;
  text-align: center;
  padding: 15px 0;
}

/* Footer Styles */
footer {
  background-color: #394263;
  color: white;
  text-align: center;
  padding: 10px 0;
}

/* Responsive Adjustments */
/* For smaller screens like mobile devices */
@media (max-width: 768px) {
  .container {
  
  }
  input[type="text"],
  input[type="email"],
  input[type="password"],
  button {
    padding: 8px;
  }

  header, footer {
    padding: 10px 0;
  }
}






