/* Add your CSS styles here */
body {
    font-family: cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    min-height: 100vh;
    margin: 0;
    transition: background 0.2s linear;
    background-image: url('Images/Component_6.png');
    background-color: #e2fbff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 45% !important;
  }
  
  @media (max-width: 600px) {
    body {
        background-size: 112% 80%;
    }
  }
  
  @media (min-width: 601px) and (max-width: 992px) {
    body {
        background-size: 100% 100%;
    }
  }
  
  @media (min-width: 993px) and (max-width: 1920px) {
    body {
        background-size: 63% 115%;
    }
  }
  
  
  
  .form {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: linear-gradient(45deg, #eb6f64d6, #ff6e62c9);
    padding: 30px;
    width: 245px;
    border-radius: 20px;
    font-family: Ledger;
    transition: background 0.3s ease;
    font-size: 20px;
  }
  
  
  .form:hover {
    background: linear-gradient(45deg, rgb(177, 30, 30), rgb(247, 54, 54));
    
  }
  
  ::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
  
  .form button {
    align-self: flex-end;
    
  }
  
  .flex-column,
  .inputForm,
  .flex-row {
    margin-bottom: 1em;
  }
  
  
  
  .input {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.5em;
    border-radius: 10rem;
  }
  
  .input:focus {
    outline: none;
  }
  
  
  .span {
    font-size: 20px;
    margin-left: 5px;
    color: white;
    font-weight: 500;
    cursor: pointer;
  }
  
  .button-submit {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    text-align: center;
    letter-spacing: 1px;
    text-decoration: none;
    background: transparent;
    transition: ease-out 0.5s;
    border: 2px solid;
    border-radius: 10em;
    box-shadow: inset 0 0 0 0 blue;
    margin: 20px 0 10px 0;
    color: white;
    font-size: 20px;
    font-weight: 500;
    height: 50px;
    width: 100%;
    cursor: pointer;
  }
  
  .button-submit:hover {
    color: white;
    box-shadow: inset 0 -100px 0 0 royalblue;
  }
   .button-submit:active {
    transform: scale(0.9);
  }
  
  .btn {
    width: 100%;
    padding: 0.5em;
    margin-top: 0.5em;
    border: none;
    border-radius: 0.3em;
    cursor: pointer;
  }
  
  .google {
    background-color: #DB4437;
    color: white;
  }
  
  .apple {
    background-color: #000000;
    color: white;
  }
  .p {
    text-align: center;
    color: white;
    font-size: 14px;
    margin: 5px 0;
  }