/* Global Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background-color: #333;
}

a {
  text-decoration: none;
  color: #337ab7;
}

a:hover {
  color: #23527c;
}

/* Login Styles */

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  background-color: #333;
}

#formContent {
  background-color: #2c2c2c;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#formContent h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #ffffff;
}

#formContent img {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
}


/* Form Styles */

form {
  margin-top: 20px;
}

input[type="text"], input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease;
}

input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #ff9900;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #ff8f00;
}

/* Error Message Styles */

#error-message {
  color: red;
  margin-bottom: 20px;
}