body {
  font-family: sans-serif;
  margin: 0px;
  display: flex;
  justify-content: right;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
  
  margin-left: 250px;
 }
.container {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 650px;
  margin-top: -120px;
  margin-right: 150px;
}
h1 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button[type="submit"] {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
}

a {
  color: #333;
  text-decoration: none;
  margin-left: 10px;
}

a:hover {
  color: #007bff;
}
