@font-face {
  font-family: 'Circular';
  src: url('/fonts/ProdcutSans-Medium.ttf'); 
}

body {
  background-color: #2d3e52;
  color: white;
  font-family: Arial, sans-serif;
}

.message {
  text-align: center;
  color: red;
}

h1 {
  color: #fbcd15;
  text-align: center;
  font-family: 'Circular', Arial, sans-serif;
}

#logo {
  display: block;
  margin: 0 auto;
  max-width: 350px;
  max-height: 350px;
  margin-top: 20px;
  margin-bottom: 30px;
}

form {
  padding: 20px;
  border-radius: 5px;
  margin: 0 auto;
  max-width: 300px;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  width: 80px;
  color: white;
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  display: inline-block;
  width: calc(100% - 95px);
  padding: 5px 10px;
  margin-bottom: 10px;
  border: 2px solid #fbcd15;
  border-radius: 5px;
  box-sizing: border-box;
}

button[type="submit"] {
  background-color: #fbcd15;
  color:  #2d3e52;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block; 
  margin: 0 auto;
  font-weight: bold;
  font-size: 16px;
}

button[type="submit"]:hover {
  background-color: #2d3e52;
  color:  #fbcd15;
}

button[type="submit"]:active {
  background-color: #3f5773;
  color:  #fde379;
}

p {
  margin-top: 10px;
}