body {
    margin: 0;
    height: 100vh;
    background-image: url('background.jpg'); /* Ваше фоновое изображение */
    background-size: cover;
    background-position: center;
  }

/*Light Mode */

.light-mode{
  margin: 0;
  height: 100vh;
  background-image: url('background2.jpg'); /* Ваше фоновое изображение */
  background-size: cover;
  background-position: center;
}

.light-mode .login-container {
  background-color: hsla(27, 96%, 29%, 0.6);
  padding: 50px 30px;
  border-radius: 20px;
  font-family: "Bebas Neue", serif;
  font-weight: 200;
  font-size: 20px;
  font-style: normal;

}

.light-mode .login-container:hover{
  box-shadow: 4px 4px 10px rgba(31, 5, 54, 0.5);
}

.light-mode .login-title{
  color: #f0cb7d;
}

.light-mode .input-group input { 
  color: white; 
  font-weight: lighter;
  background-color: hsla(30, 48%, 37%, 0.6);
  border: 1px solid hsl(35, 85%, 26%);
  border-radius: 10px;
  height: 20px;
}

.light-mode input::placeholder {
  color: #f0cb7d;
  font-family: "Bebas Neue", serif;
  font-weight: 200;
  font-size: 15px;
  font-style: normal;
}

.light-mode .login-button {
  margin-top: 20px;
  background: none;
  border: none;
  outline: none;  
  background-color: hsla(30, 48%, 37%, 0.6);
  color: #f0cb7d;
  border-radius: 5px;
  font-size: small;
  font-family: "Bebas Neue", serif;
  width: 50px;
  height: 20px;
  cursor: pointer;
  border-radius: 5px;
}



  #theme-toggle{
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: transparent
  }

  #theme-toggle:hover {
    background-color: hsla(200, 49%, 34%, 0.6);
  }

  .light-mode #theme-toggle:hover {
    background-color: hsla(30, 48%, 37%, 0.6);
  }


  .fullscreen-container {
    justify-content: center; /* Центрирование по горизонтали */
    align-items: center;    /* Центрирование по вертикали */
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.login-container {
    flex-direction: column; /* Расположить элементы вертикально */
    align-items: center;    /* Центрировать элементы по горизонтали */
    background-color: hsla(200, 49%, 34%, 0.6);
    padding: 50px 30px;
    border-radius: 20px;
    color: rgb(10, 14, 32);
    font-family: "Bebas Neue", serif;
    font-weight: 200;
    font-size: 20px;
    font-style: normal;
  }


.login-container:hover{
  box-shadow: 4px 4px 10px rgba(3, 1, 5, 0.9);
}

  .input-group input { 
    color: white; 
    font-weight: lighter;
    background-color: hsla(199, 29%, 43%, 0.6);
    border: 1px solid hsl(201, 6%, 20%);
    border-radius: 10px;
    height: 20px;
  }

  input::placeholder {
    color: rgb(10, 14, 32);
    font-family: "Bebas Neue", serif;
    font-weight: 200;
    font-size: 15px;
    font-style: normal;
  }

  .login-title {
    color: rgb(10, 14, 32);
    text-align: center;
    margin-top: 20px;
  }

  .login-button {
    margin-top: 20px;
    background: none;
    border: none;
    outline: none;  
    background-color: hsla(199, 29%, 43%, 0.6);
    border-radius: 5px;
    font-size: small;
    font-family: "Bebas Neue", serif;
    width: 50px;
    height: 20px;
    cursor: pointer;
    border-radius: 5px;
  }

  .login-button:hover{
    box-shadow: 4px 4px 10px rgba(31, 5, 54, 0.5);
  }
