.login-divider-wrapper {
    display: flex;
    align-items: center;
    margin: 18px 0 14px 0;
    gap: 10px;
}

.login-divider-line {
    flex: 1;
    height: 1px;
    background: #d9d9d9;
}

.login-divider-text {
    font-size: 11px;
    color: #9a9a9a;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.btn-microsoft {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #55b9e9;
    color: #ffffff;
    border: 1px solid #55b9e9;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
    margin-top: 4px;
    padding: 12px 15px;
    border-radius: 10px;
    width: 100%;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-microsoft:hover {
    background: #42afe3;
    color: #ffffff;
    border-color: #42afe3;
    text-decoration: none;
}

.microsoft-icon {
    display: grid;
    grid-template-columns: repeat(2, 8px);
    grid-template-rows: repeat(2, 8px);
    gap: 2px;
    flex-shrink: 0;
}

.ms-square {
    width: 8px;
    height: 8px;
    display: block;
}

.ms-red {
    background: #f25022;
}

.ms-green {
    background: #7fba00;
}

.ms-blue {
    background: #00a4ef;
}

.ms-yellow {
    background: #ffb900;
}

.btn-microsoft-label {
    display: inline-block;
    line-height: 1;
}

.login-help-text {
    margin: 10px auto 0 auto;
    text-align: center;
    font-size: 12px;
    color: #6f6f6f;
    line-height: 1.5;
    max-width: 320px;
}