a {
    text-decoration: none !important;
}

main {
    display: flex;
    flex-direction: row;
    background-color: #08428C;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#ms-login-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100vh;
    flex: 1;
    gap: 32px; /* ajustado */
    margin: 300px 0 0 140px; /* antes 190px: mais � esquerda */
}

    #ms-login-container > img {
        width: 300px; /* aumentado (antes 250px) */
        height: auto;
        margin: 60px 0 0 0; /* alinha � esquerda com t�tulo e bot�o */
    }

    #ms-login-container > h1 {
        color: #fff;
        font-family: "Open Sans";
        font-size: 24px; /* diminu�do mais */
        font-weight: 500;
        line-height: 1.3;
        width: 420px;
        margin: 20px 0 0 0; /* usa menor espa�o ap�s logo, mant�m alinhamento esquerdo */
    }

        #ms-login-container > h1 > span {
            color: #F7941D;
            font-weight: 600;
        }

#ms-login-button {
    padding: 12px;
    background-color: #2f2f2f;
    font-family: Segoe UI, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.2s;
    /* Posicionamento: mais para cima e esquerda */
    margin-top: 20px; /* espa�amento consistente abaixo do t�tulo */
    margin-left: 0; /* alinhado com logo e t�tulo */
}

    #ms-login-button:hover {
        background-color: #fff;
        color: #5e5e5e;
        box-shadow: inset 0 0 0 1px #5e5e5e;
    }
