.form-container {
  margin: 50px auto;
  max-width: 400px;
  padding: 10px 20px;
  border: 2px solid #ccc;
  border-radius: 10px;
}
    
/* Style the form fields */
input[type="text"], input[type="password"] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-sizing: border-box;
}
    
/* Style the login button */
button[type="submit"] {
  background-color: #485680;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  float: right;
}
    
/* Clear floats after the login button */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}