﻿.ms-login-button {
    display: flex;
    align-items: center;
    padding: 12px;;
    height: 41px;
    border: 1px solid #8C8C8C;
    box-sizing: border-box;
    background-color: white;
    text-decoration: none;
    color: #5E5E5E; 
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    width: fit-content;
    max-width: 100%;
}

.ms-login-button:hover {
    color: #5E5E5E;
    background-color: #f5f5f5;
}

.ms-login-button div {
    height: calc(1em + 6px);
    width: calc(1em + 6px);
    background-image: url('/images/mssymbol_19.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.ms-login-button span {
    font-size: 15px;
    white-space: nowrap;
}