body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo {
    width: 600px; /* ajuste conforme necessário */
    height: auto;
}

.title {
    font-family: 'Roboto Condensed', sans-serif; /* Fonte personalizada */
    font-size: 24px;
    text-align: center;
    margin-top: 20px;
}

.webmail-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #007bff; /* Cor azul padrão, ajuste conforme necessário */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .logo {
        width: 100px; /* Ajuste para telas menores */
    }

    .title {
        font-size: 20px;
    }

    .webmail-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
