body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  background-image: url(images/background.jpg);
  background-size: cover;
}

.all {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background: linear-gradient(90deg, rgba(76, 2, 80, 1) 0%, rgba(98, 40, 130, 1) 100%);
  border-radius: 10px;
  width: 400px;
  min-height: 320px;
}

h1 {
  color: white;
}

form {
  margin-bottom: 10px;
}

input[type="text"],
input[type="password"],
input[type="repeatpassword"],
input[type="company"] {
  padding: 10px;
  margin-bottom: 10px;
  width: 230px;
  border-radius: 5px;
  border: 1px solid lightgrey;
  background-color: white;
  color: #333333; 
}

input[type="submit"] {
  width: 150px;
  padding: 10px 20px;
  background-color: #c91658;
  color: #ffffff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
form input[type="submit"]:hover {
  background-color: #8c0013;
}
a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.error {
  color: #f44336;
  margin: 0;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 5px;
  display: none;
  font-size: 14px;
  line-height: 1.4;
  background-color: #ffffff; 
  color: #f44336; 
}
