
* {
     font-family: 'hero', sans-serif; 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'hero'; /* Escolha um nome para referenciar sua fonte */
    src: url('../fontes/Hero\ New\ Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
     body {
        display: flex;
        justify-content: end;
        align-items: center;
       
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        width: 100vw;
        height: 100vh;
        margin: 0;
        padding: 0;
    }
    @media (max-width: 768px) {
        .body {
            background-image: url('../assets/images/desk3.png');
        }


        .container {
          
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            margin: 0;
            z-index: 2000;
            width: 30%;

         
        }

        .container.show {
            display: block;
        }

        .show-login-btn {
            display: block;
        }

         .body .logo,
        body .logo {
            width: 30% !important;

        }

        .modal-content {
            margin: 10% auto;
            width: 95%;
            max-height: 70vh;
        }
    }


    form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    input {
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        border-radius: 14px;
        border: solid 3px  #e6e4ef;
    }

    button {
        padding: 10px;
        background-color: #a12a97;
        color: white;
        border: none;
        border-radius: 14px;
        cursor: pointer;
        font-size: 16px;
    }

    button:hover {
        background-color: #a12a97;
    }

    .error-message {
        color: red;
        margin-bottom: 10px;
        display: none;
    }

    .loading {
        cursor: not-allowed;
        opacity: 0.7;
    }

    .link-login {
        text-align: center;
        margin-top: 20px;
    }

    .link-login a {
        color: #a12a97;
        text-decoration: none;
    }

    .link-login a:hover {
        text-decoration: underline;
    }

    .container {
       
        padding: 30px;
        border-radius: 8px;
        width: 85%;
        max-width: 400px;
        margin-right: 150px;
      
    }

    h2 {
        color: #a12a97;
        font-size: 14pt;
    }

    .logo {
        position: absolute;
        top: 10px;
        left: 10px;
        width: 15%;
        height: auto;
        z-index: 1000;
    }