@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titan+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titan+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&display=swap');

    html {
        width: 100%;
        height: 100%;
    }

    body {
        background-image: url('../assets/Pagina_Login/Fundo.png');
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
    }

    .tela-login {
        display: flex;
        flex-direction: row;
        max-width: 1090px;
        height: 798px;
        background-color: #FFFBF0;
        margin-top: 30px;
        border-radius: 20px;
        opacity: 0.9;
    }

    .form {
        padding: 80px 80px 80px 80px;
        max-width: 440px;
        max-height: 690px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    #text-Titulo {
        text-align: center;
    }

    .text-login {
        font-family: Inter;
        color: #333333;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
    }

    a {
        text-decoration: none !important;
    }

    #text-login2 {
        color: #F881A1;
        font-family: Titan One;
        font-size: 32px;
        text-shadow: 2px 2px #F5F5F5;
        letter-spacing: 9px;
        margin: 0;
    }

    .input-logar {
        max-width: 440px;
        margin-top: 10px;
    }

    .nome-input {
        color: #333333;
        font-size: 14px;
        font-family: Inter;
        padding: 3px 0 3px 0;
    }

    .input-login-olho {
        border: solid #CCCCCC 1px;
        background-color: #FFFBF0;
        width: 440px;
        height: 46px;
        border-radius: 8px;
        color: #999999;
        font-size: 14px;
        font-family: Inter;
        padding: 2px 0 2px 10px;
    }

    input:focus {
        border: solid #999999 1px;
        outline: none;
    }

    .text-p {
        color: #333333;
        font-size: 12px;
        font-family: Inter;
        font-weight: Medium;
        text-align: center;
    }

    .linha {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    hr {
        width: 175px;
        margin: 20px;
    }

    #bt-login-google {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 440px;
        height: 58px;
        background-color: #FFFBF0;
        border-radius: 44px;
        border: #F881A1 1px solid;
        color: #999999;
        font-size: 16px;
        font-family: Inter;
        gap: 30px;
        letter-spacing: 4px;
        cursor: pointer;
        text-decoration: none !important; /* garante que o underline não volte */
      }

    #tela-cadastro-login {
        color: #22BBF2;
        font-size: 18px;
        font-family: Inter;
        font-weight: bolder;
        cursor: pointer;
    }

    #direcao-pag {
        color: #333333;
        font-size: 16px;
        font-family: Inter;
        font-weight: Medium;
    }

    #img-login {
        background-image: url('../assets/Pagina_Login/IMG-Login.png');
        width: 430px;
        height: 798px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        background-repeat: no-repeat;
    }

    #bt-logar {
        background-color: #F881A1;
        border: solid #F881A1 1px;
        border-radius: 44px;
        min-width: 440px;
        min-height: 58px;
        color: #FFFFFF;
        font-family: Inter;
        font-weight: 600;
        font-size: 16px;
        letter-spacing: 14px;
        margin: 30px 0 10px 0;
        cursor: pointer;
    }

    #bt-logar:hover {
        box-shadow: 1px 1px 2px #999999;
    }

    .olhos {
        display: flex;
        flex-direction: row;
    }

    #olho-repsenha, #olho-senha {
        width: 25px;
        margin-left: 20px;
    }

    #mostraErro {
        text-align: center;
        font-size: 14px;
        color: #7D1133;
        font-family: Inter;
        margin: 10px 0 10px 0;
      }

    /* Botão flutuante para voltar à Home */
    .btn-home {
        position: fixed;
        bottom: 25px;
        right: 25px;
        background-color: #f4a6b8;  /* cor rosa */
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 999;
    }

    .btn-home:hover {
        background-color: #6b4f4f;  /* cor marrom */
        transform: scale(1.1);
    }

    .btn-home:active {
        transform: scale(1);
    }

    .btn-home img {
        width: 30px;
        height: 30px;
        filter: brightness(0) invert(1); /* deixa o ícone branco */
    }