body {
    background-image: linear-gradient(to bottom right, rgb(0, 0, 0), rgb(43, 43, 43));
    color: white;
   }

   .box {
    width: 400px; 
    height: 350px; 
    background-color: rgb(48, 48, 48); 
    box-shadow: 0 0 10px rgba(70, 70, 70, 0.2);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: 'Roboto', sans-serif;
    }


    .button-container {
        display: flex;
        width: 95%;
        justify-content: space-around;
      }

    input[type=text], input[type=password] {
        width: 90%;
        padding: 15px 20px;
        margin: 15px 0;
        display: inline-block;
        border: 1px solid #333333;
        border-radius: 10px;
        box-sizing: border-box;
        box-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
        background-color:#444444;
        color: white;
        font-family: 'Roboto', sans-serif;
      }


    button {
        background-color: #444444;
        color: white;
        padding: 17px 65px;
        margin: 12px 0;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        box-shadow: 0 0 1px rrgba(255, 255, 255, 0.2);
        font-family: 'Roboto', sans-serif;
      }
      
      button:hover {
        transform: translateY(-3px);
        background-color: #4CAF50;
      }
      
      button.discord {
        background-color: #444444;
        box-shadow: 0 0 1px rgba(255, 255, 255, 0.2);
      }
    
      button.discord:hover {
        transform: translateY(-3px);
        background-color: #7289DA;
      }

