
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  background: linear-gradient(to top left, #4dbb53, #0e1b2b 100%);
}
body,
html {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}


.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
}


.login-box {
  background-color: rgba(256, 256, 256, 0.2);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  width: 350px;
  text-align: center;
}

.logo
{
  margin-bottom: 20px;
}

.title
{
  color: #fff;
  font-size: 24px;
  font-family: 'Roboto Condensed', serif;
  margin-bottom: 10px;
}


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

.form-style {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  background: rgba(256, 256, 256, 0.2) !important;
  color: #fff !important;
  border-radius: 5px;
  -webkit-text-fill-color: #000;
}
.form-style:focus-visible {
  outline: none;
}

.login-btn {
  /*width: 100%;*/
  padding: 10px;
  background-color: #ff6801;
  border: none;
  color: #0e1b2b;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 500ms;;
}

.login-btn:hover {
  color: #ff6801;
  background-color: #0e1b2b;
}

.link-text
{
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}