/* Corpo */
body {
    background-image: url('/public/assets/images/shared/bg_optimized.jpg'); /* Fundo otimizado */
    background-size: cover; /* Faz a imagem cobrir todo o fundo */
    background-position: center; /* Centraliza a imagem */
    background-attachment: fixed; /* Fundo fixo em dispositivos adequados */
    background-repeat: no-repeat; /* Evita repetição */
    font-family: Arial, sans-serif; /* Fonte padrão */
    overflow: auto; /* Restaura o comportamento normal de scroll */
    overflow-x: hidden !important; /* Evita scroll horizontal */
    width: 100%;
    padding: 0 !important;
    margin:  0 !important;
}

#content{
    padding: 0 !important;
    margin: 0 !important;
}

.logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    background-image: url('/public/assets/images/shared/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    margin-right: 8px;
    transition: box-shadow 0.2s;
}


/* Botão Azul LinkMedMe */
.btn-linkmedme {
    width: 100%;
    height: 50px;
    font-size: 1.2rem;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: #9DD0D4;
    color: white !important;
    border-color: #9DD0D4;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Transição suave */
}

.btn-linkmedme:hover {
    background-color: #C9E7DE !important;
    border-color: #C9E7DE !important;
}

.btn-linkmedme:active,
.btn-linkmedme:focus {
    background-color: #C9E7DE !important;
    border-color: #C9E7DE !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Botão Verde LinkMedMe */
.btn-green-linkmedme {
    width: 100%;
    height: 50px;
    font-size: 1.2rem;
    padding: 10px 16px !important;
    border-radius: 6px;
    background-color: rgba(11, 153, 94, 1) !important;
    color: white !important;
    border-color: rgba(11, 153, 94, 1) !important;
    outline: none;
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Transição suave */
}

.btn-green-linkmedme:hover,
.btn-green-linkmedme:active,
.btn-green-linkmedme:focus {
    background-color: rgba(11, 153, 94, 0.8) !important;
    border-color: rgba(11, 153, 94, 0.8) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Botão Google */
.btn-google-linkmedme {
    width: 100%;
    height: 50px;
    font-size: 1.2rem;
    padding: 10px 16px !important;
    border-radius: 6px;
    background-color: #4285F4 !important;
    color: #fff !important;
    border: 1px solid #4285F4 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-google-linkmedme:hover {
    background-color: #357ae8 !important;
    border-color: #357ae8 !important;
}

.btn-google-linkmedme i {
    color: #fff !important;
}

button:focus, input:focus, [tabindex]:focus {
    outline: none !important;
    box-shadow: none !important;
}
