.page-header {
    position: relative;
    background-image: url('images/aulas-home1111.jpg');
    background-size: cover; /* Faz com que a imagem cubra todo o header */
    background-position: top ; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita a repetição da imagem */
    color: #fff; /* Define a cor do texto para branco (ou outra cor que contraste com a imagem de fundo) */
    padding: 20px; /* Ajuste o padding conforme necessário */
    text-align: center; /* Centraliza o texto */
    /* height: 150px; */
    width: 100%;
}

.procure-e-encontre {
    color: #4cae4c;
}

.page-header h2, p {
    margin: 0;
}


.page-header .dancing-script {
    font-family: "Dancing Script", cursive;
    font-size: 2;
    font-weight: 700;
    font-style: normal;
    margin-top: 0;
    padding-top: 0;
}

.logo-anchor img.logo {
    width: 20%;
    height: auto;
}

.become-a-teacher {
    position: absolute;
    bottom: 10px;
    right: 10px;
    margin-bottom: 0;
    z-index: 10;
}

button.become-a-teacher {
    background-color: #5cb85c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
  }
  
button.become-a-teacher:hover {
    background-color: #4cae4c;
  }

form.turn-into-a-teacher button.become-a-teacher {
    background-color: #5cb85c;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 20px;
}
  
form.turn-into-a-teacher button.become-a-teacher:hover {
    background-color: #4cae4c;
}

@media (max-width: 768px) {
    .page-header {
        display: flex;
        flex-direction:column;
        align-items: start;
        padding: 10px;
    }
    
    .page-header p {
        font-size: 1rem;
    }

    .logo-anchor img.logo {
        width: 40%;
        height: auto;
    }

    form.turn-into-a-teacher {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* .become-a-teacher */
    form.turn-into-a-teacher button.become-a-teacher {
        position: relative;
        margin-bottom: 0px;
        right: auto;
        bottom: auto;
    }

    p.procure-e-encontre.dancing-script {
        font-size: 1rem;
        /* margin-top: 30px; */
    }

}