* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
  
  body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    /* background-image: url('../../sources/ball.png'); */
    background-color: rgba(0,0,0,1);
    background-repeat: no-repeat;
    background-size:cover;
    background-blend-mode: darken;
    padding-top: 20px;
    padding-bottom: 20px;
  }


   .back-button {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: #111;
      border: 2px solid #00aaff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .back-button:hover {
      transform: scale(1.15) rotate(-10deg);
      box-shadow: 0 0 15px 2px #00aaff;
    }

    .back-button svg {
      fill: #00aaff;
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }

    .back-button:hover svg {
      transform: translateX(-4px);
    }


  
  .login-container {
    box-shadow: 0 5px 5px rgba(48, 150, 233, 0.7), 0 10px 10px rgba(44, 61, 115, 0.7), 0 10px 10px rgba(0, 0, 0, 1);
    background: #000;
    padding: 20px;
    border-radius: 8px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    max-width: 400px;
    width: 80vw;
    margin: 20px;
  }
  
  .login-form {
    width: 100%;
  }
  
  h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ADD8E6;
  }
  
  .input-group {
    margin-bottom: 15px;
  }
  
  .input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
  }
  
  .input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: transparent;
    color: white;
  }
  
  button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #0056b3;
  }
  
  .message {
    text-align: center;
    margin-top: 20px;
    color: #777;
  }
  
  .message a {
    color: #007bff;
    text-decoration: none;
  }
  
  .message a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .login-container {
      padding: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .login-container {
      padding: 10px;
    }
  
    h2 {
      font-size: 18px;
    }
  
    button {
      font-size: 14px;
    }
  
    .input-group input {
      padding: 8px;
    }
  }
  .com_name{
    font-weight: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    color: #ADD8E6;
    animation: colorFlow 5s alternate;
  }


  @keyframes colorFlow {
    0% {
        color: black;
    }

    25% {
        color: white
    }

    50% {
        color: transparent;
        -webkit-text-stroke: 1px white;
    }

    70% {
        color: transparent;
        -webkit-text-stroke: 1px white;
    }

    100% {
        color: white;
    }
}


@media (min-width:320px){
    .com_name{
        font-size: 3rem;
    }
}
@media (max-width:244px){
  html{
    background-color: #000;
  }
  body{
    display: none;
  }
}

@media (max-height:442px){
  body{
    height: auto;
  }
}

.m2{
  font-size: small;
  padding:0 7% ;
}

.load{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: transparent;
  border-top:1px solid white ;
  border-bottom:1px solid white ;
  border-right:1px solid transparent ;
  border-left:1px solid transparent ;
  animation-name:rotate ;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: linear;
  cursor:not-allowed;

}


@keyframes rotate {
  0%{
    border-top:1px solid transparent ;
    border-bottom:1px solid transparent ;
    border-right:1px solid white ;
    border-left:1px solid white ;
  }
  50%{
    border-top:1px solid white ;
    border-bottom:1px solid white ;
    border-right:1px solid transparent ;
    border-left:1px solid transparent ;
  }
  100%{
    border-top:1px solid transparent ;
    border-bottom:1px solid transparent ;
    border-right:1px solid white ;
    border-left:1px solid white ;
  }
}

