section.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  height: 100%;
}
.container {
  width: 100%;
  max-width: 400px; /* Adjust the max-width for a small window */
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
}

h1 {
  font-size: 24px;
  color: #333;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-size: 14px;
  color: #555;
  text-align: left;
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 5px;
  box-sizing: border-box;
}

button[type="submit"] {
  background-color: rgb(190, 18, 18);
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

button[type="submit"]:hover {
  background-color: rgb(190, 18, 18);
  scale: 1.01;
}

input:focus,
button:focus {
  outline: none;
  box-shadow: 0 0 5px rgba(72, 144, 226, 0.7);
}
img.brand-logo{
  width: 100px;
}
.signup{
  background-color: rgb(105, 102, 102);
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  text-decoration: none;
}
.signup:hover{
  background-color: rgb(190, 18, 18);
}