body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: Arial, sans-serif;

}

h1 {
  font-weight: bold;
  color: black;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

span {
  color: #dbfb43;
  -webkit-text-stroke: 2px black;
  text-stroke: 2px solid black;

}

.container {
  text-align: center;

}


img {
  margin-top: 20px;
  background-color: black;
  padding: 10px;
  border-radius: 20px;
}

.upload-button {
  background-color: #dbfb43;
  color: black;
  width: 10%;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.upload-button:hover {
  background-color: #6c8324;
  color: white;
}

/* Style the file input label */
.file-input-label {
  display: inline-block;
  background-color: #dbfb43;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
}

.file-input {
  display: none;
}

.file-input-label:hover {
  background-color: #6c8324;
  color: white;
}

.selectedFileName {
  display: flex;
  flex-direction: row;
  font-weight: lighter;
}

.container-login {
  text-align: center;
  margin-top: 8%;
  background-color: #fafafa;
  border: 1px solid black;
  width: 300px;
  padding: 25px 25px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.logo-login {
  width: 100px;
  height: 100px;
  background-size: cover;
  margin-bottom: 30px;
}

.log-logo {
  margin-left: 50%;
}

.form-group-login {
  margin-bottom: 10px;
}

label {
  display: block;
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  width: 80%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button {
  background-color: #dbfb43;
  color: black;
  width: 80%;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

button:hover {
  background-color: #6c8324;
  color: white;
}

.logout {
  background-color: #dbfb43;
  color: black;
  margin-top: 20px;
  width: 6%;
  padding: 5px 10px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  position: absolute;
  right: 10%;
}

.logout:hover {
  background-color: #6c8324;
  color: white;
}