body {
    display: flex;
    flex-direction: column;
    font-family: 'Google Sans', sans-serif;
    font-weight: 500;
    background-color: #292A31;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    color: #292A31;
  }

  form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  input {
    all: unset;
  }
  
  input:focus {
    outline: none;
    all: unset;
  }

  /* .crown {
    width: 230px;
  } */
  
  .login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 430px;
    height: 325px;
    padding: 0 20px 20px 20px;
    border-radius: 10px;
  }
  .login-container img {
    border-bottom: 2px solid #EAECF0;
    padding: 5px;
    }
  .input-group {
      margin-bottom: 15px;
      display: flex;
      align-items: flex-end
  }
  
  
  input[type="text"],
  input[type="password"] {
    width: 300px;
    padding: 5px;
    padding-right: 45px;
    background-color:#292A31;
    margin-top: 5px;
    border-bottom: 2px solid #EAECF0;
    box-sizing: border-box;
    color: white;
    margin-top: 36px;
    text-align: center;
  }
  button {
    box-sizing: border-box;
    width: 150px;
    height: 50px;
    padding: 10px;
    margin-top: 25px;
    font-weight: 500;
    color: #292A31;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    background: none;
    border: 2px solid;
    line-height: 1;
    color: #FFDFAE;
    border-radius: 25px;
  }
  
  button:hover,
  button:focus {
      box-shadow: 0 0.5em 0.5em -0.4em #FFDFAE;
      border-color: #FFDFAE;
      color: #fff;
      border-radius: 50px;
  }
  
  .page-login {
    min-height: 100%;
    display: grid;
  
  }
  
  .page-login {
    font-weight: 400;
    font-style: normal;
    background: black;
    margin: auto;
    min-height: 100vh;
  }
  
  .wrapper {
    background-color: #292A31;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
  }
  .alert {
      margin-top: 10px;
      height: 20px;
  }
  .loader {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    margin-top: 25px;
    padding: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: 
      radial-gradient(farthest-side,#FFDFAE 94%,#0000) top/8px 8px no-repeat,
      conic-gradient(#0000 30%,#FFDFAE);
    mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
      -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
    animation: l13 1s infinite linear;
  }
  @keyframes l13{ 
    100%{transform: rotate(1turn)}
  }   