html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.ms-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 8px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background-color: white;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s;
}

    .ms-login-btn:hover {
        background-color: #f3f3f3;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    }

.ms-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.ms-login-btn span {
    vertical-align: middle;
}